/** Shopify CDN: Minification failed

Line 1015:0 Unexpected "}"
Line 2860:12 Expected identifier but found whitespace
Line 2860:13 Unexpected "0.6"

**/
/* ========================================
   THEME-COMPONENTS.CSS
   Reusable UI component styles
   Consolidated: 2026-03-05
   Source files: cinema-components.css, cinema-global.css,
                cinema-footer-refined.css, cinema-product-card.css
   ======================================== */

/* ========================================
   BUTTONS
   ======================================== */
.ag-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  min-height: 44px;
  font-family: var(--ag-font-ui, 'Work Sans', sans-serif);
  font-size: 0.8125rem;
  font-weight: var(--ag-font-weight-bold, 700);
  text-transform: uppercase;
  letter-spacing: var(--ag-letter-spacing-widest, 0.08em);
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  transition:
    transform var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease),
    box-shadow var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease),
    background-color var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease),
    border-color var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease),
    color var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease);
}

.ag-button--ghost {
  background: transparent;
  color: var(--ag-color-forest-900);
  border-color: var(--ag-color-forest-900);
}

.ag-button--ghost:hover {
  background: var(--ag-color-forest-900);
  color: var(--ag-color-white);
  transform: translateY(-2px);
}

.ag-button--primary {
  background: linear-gradient(135deg, var(--ag-color-gold-bright) 0%, var(--ag-color-gold-mix) 100%);
  color: var(--ag-color-forest-950);
  border: none;
  box-shadow: 0 4px 12px rgba(246, 185, 0, 0.25);
}

.ag-button--primary:hover {
  background: linear-gradient(135deg, #ffcd4a 0%, var(--ag-color-gold-bright) 100%);
  box-shadow: 0 6px 16px rgba(246, 185, 0, 0.35);
  transform: translateY(-2px);
}

.ag-button--secondary {
  background: transparent;
  color: var(--ag-color-forest-900);
  border: 2px solid var(--ag-color-forest-900);
}

.ag-button--secondary:hover {
  background: var(--ag-color-forest-900);
  color: #fff;
  transform: translateY(-2px);
}

.ag-button--orange {
  background: linear-gradient(180deg, var(--ag-color-accent-primary) 0%, var(--ag-color-action-hover) 100%);
  color: var(--ag-color-white);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  border: none;
}

.ag-button--orange:hover {
  background: linear-gradient(180deg, var(--ag-color-gold-400) 0%, var(--ag-color-accent-primary) 100%);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
  transform: translateY(-2px);
}

.ag-button--gold {
  background: linear-gradient(135deg, var(--ag-color-gold-bright) 0%, var(--ag-color-gold-mix) 100%);
  color: var(--ag-color-forest-950);
  border: none;
  box-shadow: 0 4px 12px rgba(246, 185, 0, 0.25);
}

.ag-button--gold:hover {
  background: linear-gradient(135deg, var(--ag-color-gold-300) 0%, var(--ag-color-gold-bright) 100%);
  box-shadow: 0 6px 16px rgba(246, 185, 0, 0.35);
  transform: translateY(-2px);
}

.ag-button--rust {
  background: var(--ag-color-accent-rust);
  color: #fff;
  border: none;
}

.ag-button--rust:hover {
  background: var(--ag-color-gold-500);
  transform: translateY(-2px);
}

.ag-button--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  min-height: 36px;
}

.ag-button--large {
  padding: 1rem 2.5rem;
  font-size: 0.9375rem;
  min-height: 52px;
}

[type="submit"]:not(.ag-button) {
  transition:
    transform var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease),
    box-shadow var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease),
    background-color var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease),
    border-color var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease),
    color var(--ag-motion-duration-fast, 160ms) var(--ag-motion-ease-standard, ease);
}

.ag-button:hover,
[type="submit"]:not(.ag-button):hover {
  transform: translateY(-2px);
}

.ag-button:active,
[type="submit"]:not(.ag-button):active {
  transform: translateY(0) scale(0.98);
  transition: transform 100ms ease;
}

/* ========================================
   FORMS
   ======================================== */
/* No form components */

/* ========================================
   CARDS
   ======================================== */
.ag-product-card {
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(14, 62, 41, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.2s ease;
}

.ag-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(14, 62, 41, 0.08);
  border-color: rgba(246, 185, 0, 0.45);
}

.ag-card {
  border-radius: 16px;
  box-shadow:
    0 4px 16px rgba(14, 62, 41, 0.05),
    0 1px 4px rgba(0, 0, 0, 0.02);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.ag-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 185, 0, 0.25);
  box-shadow:
    0 12px 32px rgba(14, 62, 41, 0.08),
    0 4px 12px rgba(14, 62, 41, 0.04);
}

.ag-card .ag-product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--ag-font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #0e3e29;
  color: #f6b900;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.ag-card:hover .ag-card__img {
  transform: scale(1.04);
  filter: brightness(1.05) contrast(1.02);
}

.ag-card:hover .ag-card__wellness-label {
  transform: translateY(0);
}

.ag-card {
  border-radius: 1.25rem;
}

.ag-card__content {
  padding: 1.75rem;
}

.ag-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ag-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.ag-card__price {
  font-size: 1.5rem;
}

.ag-card__add-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  min-height: 44px;
}

.ag-card--premium {
  border-radius: 1.125rem !important;
}

.ag-card .ag-product-card__badge {
  background: #1a4731 !important;
}

.ag-card,
.ag-product-card,

.ag-card:hover .ag-card__img {
  transform: scale(1.04);
  filter: brightness(1.03);
}

.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: transparent !important;
}

.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);
}

.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: transparent !important;
}

.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);
}

.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: transparent !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 .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: 12px !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;
}

.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-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-product-card:hover .ag-card__img,
.ag-product-card:hover .ag-product-card__image {
  transform: scale(1.06) !important;
}

.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: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  border-radius: 999px !important;
}

.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;
}

.ag-card:hover .ag-card__img,
.ag-product-card:hover .ag-product-card__image {
  transform: scale(1.05) !important;
}

.ag-featured-collection__grid--home .ag-card,
.ag-featured-collection__grid--home .ag-product-card {
  height: 100% !important;
  width: 100% !important;
}

.ag-card,
.ag-card--collection,

.ag-card--premium,
.ag-card--blog,

.ag-card,
.ag-card--collection,

.ag-card--premium,
.ag-card--blog,

.ag-card:hover,
.ag-card--collection:hover,

.ag-card--premium:hover,
.ag-card--blog:hover,

.ag-card,
.ag-card--collection,

.ag-card--premium,
.ag-card--blog,

.ag-card--blog,

.ag-card--blog .ag-card__excerpt {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden !important;
  margin-bottom: 1.2rem !important;
}

.ag-card--blog .ag-card__metadata {
  display: flex !important;
  gap: 0.8rem !important;
  font-size: 0.85rem !important;
  opacity: 0.75 !important;
}

.ag-card--blog .ag-card__cta {
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  min-height: 2.4rem !important;
  padding: 0.6rem 1.4rem !important;
}

.ag-card,
.ag-card--collection,
.ag-card--premium,
.ag-card--blog {
  padding: 1.3rem 1.25rem 1.3rem !important;
}

.ag-card,
.ag-card--collection,
.ag-card--premium,
.ag-card--blog,
.ag-testimonial-card,
.ag-store-card {
  padding: var(--card-padding-mobile, 1.2rem 1rem 1.2rem) !important;
}

/* FAQ rows: mobile spacing */

/* Blog cards: compact */
.ag-blog-card__cta,
.ag-card--blog .ag-card__cta {
  min-height: 2.3rem !important;
  padding: 0.55rem 1.2rem !important;
  font-size: 0.9rem !important;
}

/* Chips: horizontal scroll on mobile */
.ag-filter-list,
.tag-list {
  gap: 0.75rem !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
}

.ag-filter-list::-webkit-scrollbar,
.tag-list::-webkit-scrollbar {
  display: none !important;
}

/* Metrics: mobile scale */
.ag-heritage-stat,
.ag-store-count,
.ag-timeline-year {
  font-size: clamp(2rem, 6vw, 2.8rem) !important;
}

/* Store cards: mobile */
.ag-store-card,
.store-location-card {
  padding: 1.1rem 0.95rem 1.1rem !important;
}

/* Timeline: mobile compact */
.ag-timeline,
.timeline-component {
  gap: 2rem !important;
}

/* Prices: mobile scale */
.ag-card__price,
.ag-price {
  font-size: 1.25rem !important;
}

.ag-card,
.ag-card--collection,
.ag-card--premium,
.ag-card--blog,
.testimonial-card,
.ag-store-card,
.ag-faq-row,
.ag-timeline-card {
  transition: none !important;
}

.ag-card:hover,
.ag-card--collection:hover,
.ag-card--premium:hover,
.ag-card--blog:hover,
.testimonial-card:hover,
.store-card:hover,
.faq-row:hover,
.timeline-card:hover {
  transform: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.ag-filter-pill.is-active,
.ag-tag-pill.is-active,

.ag-card,
.product-card,

.ag-card:hover,
.product-card:hover,

.ag-card>*+*,
.product-card>*+*,

.ag-card .button,
.ag-card button,

.ag-featured-collection .ag-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.ag-featured-collection .ag-card__img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ag-card:hover,
.product-card:hover,
.blog-card:hover,
button:hover,
.ag-button:hover {
  transform: none !important;
}

.ag-card:hover,
.product-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.location-card:hover {
  transform: none;
}

/* Touch feedback */
.ag-card:active,
.product-card:active,
.blog-card:active,
button:active,
.ag-button:active {
  transform: scale(0.98);
}

/* Smoother spacing on mobile */
section {
  padding-block: var(--section-pad-sm);
}

.ag-card--premium .ag-card__title,
.ag-card--collection .ag-card__title {
  min-height: 2.6em;
  /* Reserve 2 lines at line-height 1.3 */
}

.ag-card--premium .ag-card__excerpt,
.ag-card--collection .ag-card__excerpt {
  min-height: 4.95em;
  /* Reserve 3 lines at line-height 1.65 */
}

.ag-card--premium .ag-product-card__rating,
.ag-card--collection .ag-product-card__rating {
  min-height: 1.5em;
}

.ag-card--premium .ag-card__add-btn,
.ag-card--collection .ag-card__add-btn {
  box-shadow: none !important;
}

.ag-card--premium .ag-card__add-btn:hover,
.ag-card--collection .ag-card__add-btn:hover {
  box-shadow: none !important;
}

.ag-card--collection {
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.08);
  border-radius: var(--ag-radius-card);
  overflow: hidden;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.07),
    0 12px 48px rgba(0, 0, 0, 0.05);
  transition: all 0.6s var(--ag-ease-emphasized);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.ag-card--collection::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--ag-radius-card);
  padding: 2px;
  background: linear-gradient(135deg,
      rgba(246, 185, 0, 0.35),
      transparent 40%,
      transparent 60%,
      rgba(234, 88, 12, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.ag-card--collection:hover::before {
  opacity: 1;
}

.ag-card--collection:hover {
  transform: translateY(-16px);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(246, 185, 0, 0.25);
}

.ag-card--collection .ag-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.ag-card--collection .ag-card__media-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ag-color-cream-200) 0%, var(--ag-color-cream-300) 100%);
}

.ag-card--collection .ag-card__media-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(14, 62, 41, 0) 0%,
      rgba(14, 62, 41, 0.04) 100%);
  z-index: 2;
  pointer-events: none;
}

.ag-card--collection .ag-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ag-ease-emphasized);
}

.ag-card--collection:hover .ag-card__img {
  transform: scale(1.1);
}

.ag-card--collection .ag-card__badge-floating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: var(--ag-color-forest-900, #0e3e29);
  color: #F6B900;
  font-family: var(--ag-font-ui, 'Work Sans', sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.625rem 1rem;
  border-radius: var(--ag-radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow:
    0 6px 16px rgba(14, 62, 41, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ag-card--collection .ag-card__badge-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.ag-card--collection .ag-card__content {
  position: relative;
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ag-card--collection .ag-card__title {
  font-family: var(--ag-font-display, 'Fraunces', serif);
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ag-color-forest-950, #0a1f17);
  margin: 0 0 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.15em * 2);
}

.ag-card--collection .ag-card__title-link {
  text-decoration: none;
  display: block;
}

.ag-card--collection .ag-product-card__rating {
  margin-bottom: 1.25rem;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.625rem;
}

.ag-card--collection .ag-product-card__stars {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 2px !important;
  color: #F6B900 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  white-space: nowrap !important;
}

.ag-card--collection .ag-product-card__stars svg {
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
  fill: currentColor !important;
  vertical-align: middle !important;
  margin: 0 !important;
  clear: none !important;
}

.ag-card--collection .ag-product-card__stars {
  color: #F6B900;
  font-size: 0.95rem;
  letter-spacing: 2.5px;
}

.ag-card--collection .ag-product-card__rating-label {
  font-family: var(--ag-font-body, 'Crimson Text', serif);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--ag-color-ink-500, #6b6b6b);
}

.ag-card--collection .ag-card__excerpt {
  font-family: var(--ag-font-body, 'Crimson Text', serif);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ag-color-ink-600, #525252);
  margin-bottom: 1.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.45em * 4);
}

.ag-card--collection .ag-card__content-spacer {
  flex: 1;
  min-height: 1rem;
}

.ag-card--collection .ag-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(14, 62, 41, 0.08);
}

.ag-card--collection .ag-card__price {
  font-family: var(--ag-font-display, 'Fraunces', serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--ag-color-forest-950, #0e3e29);
  line-height: 1;
}

.ag-card--collection .ag-card__price::first-letter {
  font-size: 0.65em;
  opacity: 0.85;
}

.ag-card--collection .ag-card__add-btn {
  background: linear-gradient(135deg, #0e3e29 0%, #1a5e3f 100%);
  color: #f6b900;
  border: none;
  border-radius: var(--ag-radius-sm);
  font-family: var(--ag-font-ui, 'Work Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition:
    transform 0.2s var(--ag-ease-emphasized),
    box-shadow 0.2s var(--ag-ease-emphasized);
  box-shadow:
    0 2px 8px rgba(14, 62, 41, 0.25),
    inset 0 1px 0 rgba(246, 185, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  width: 100%;
}

.ag-card--collection .ag-card__add-btn:hover {
  background: linear-gradient(135deg, #1a5e3f 0%, #0e3e29 100%);
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(14, 62, 41, 0.35),
    inset 0 1px 0 rgba(246, 185, 0, 0.3);
}

.ag-card--collection .ag-card__add-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.ag-card--collection .ag-card__price {
  font-size: clamp(26px, 3.5vw, 36px);
}

.ag-fc-card__footer-top {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.ag-fc-card__footer-top:not(:has(.ag-fc-card__variant-wrapper)) .ag-fc-card__price {
  margin: 0 auto;
}

.ag-fc-card__variant-wrapper {
  flex-shrink: 0;
}

.ag-fc-card__variant-select {
  min-width: 80px;
}

.ag-card--collection .ag-card__content {
  padding: 1.25rem;
}

.ag-fc-card__title,
.ag-card--collection .ag-card__title {
  font-size: 1.15rem;
}

.ag-fc-card__price,
.ag-card--collection .ag-card__price {
  font-size: clamp(24px, 4vw, 32px);
}

.ag-fc-card__variant-label {
  font-size: 0.65rem;
}

.ag-fc-card__variant-select {
  font-size: 0.75rem;
  padding: 0.45rem 0.65rem;
}

.ag-card--collection .ag-card__price {
  font-size: clamp(22px, 5vw, 28px);
}

.ag-fc-card__btn,
.ag-card--collection .ag-card__add-btn {
  font-size: 0.7rem;
  padding: 0.65rem 1.25rem;
}

/* ========================================
   LAYOUT
   ======================================== */
.ag-section-heading {
  margin-bottom: 0;
}

.ag-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.ag-grid img,
.ag-cinema-grid img {
  opacity: 1 !important;
}

}

.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-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-discovery-links {
  padding-block: 3rem;
}

.ag-discovery-links__column {
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.ag-discovery-links__title {
  font-size: 1.25rem;
}


.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.75rem 1rem;
  font-size: 0.625rem;
  min-height: 44px;
  border-radius: 8px;
}

.ag-card__actions-row {
  gap: 0.75rem;
}

.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-discovery-links {
  padding-block: 3rem;
}

.ag-discovery-links__column {
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.ag-discovery-links__title {
  font-size: 1.25rem;
}

.ag-footer__grid {
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.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;
}

/* ========================================
   OTHER COMPONENTS
   ======================================== */
.ag-featured-collection__grid {
  gap: 1.5rem;
}

.ag-featured-collection__grid {
  gap: 2rem;
}

.ag-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5625rem, 1.3vw, 0.6875rem) clamp(0.875rem, 1.8vw, 1.125rem);
  background: linear-gradient(145deg, #ffffff 0%, #fcfaf7 100%);
  border: 1px solid rgba(14, 62, 41, 0.1);
  border-radius: 12px;
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  font-weight: 600;
  color: #0E3E29;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.ag-filter-pill:hover {
  border-color: rgba(14, 62, 41, 0.2);
  background: #ffffff;
  box-shadow:
    0 0 0 3px rgba(14, 62, 41, 0.08),
    0 2px 8px rgba(14, 62, 41, 0.06);
  transform: translateY(-1px);
}

.ag-filter-pill.is-active {
  background: #0E3E29;
  color: #fff;
  border-color: #0E3E29;
  box-shadow: 0 8px 20px -4px rgba(14, 62, 41, 0.2);
}

.ag-featured-collection__grid {
  gap: 1rem;
}

.ag-featured-collection__header--centered {
  margin-bottom: 3rem;
}

.ag-featured-collection__header--centered {
  margin-bottom: 2rem;
}

.ag-featured-collection__grid {
  gap: 0.75rem;
}

.ag-card__content,
.ag-product-card__content {
  padding: 1rem;
}

.ag-card__title,
.ag-product-card__title {
  font-size: 1rem;
}

.ag-card__price {
  font-size: 1.25rem;
}

.ag-card__add-btn {
  padding: 6px 12px;
  font-size: 12px;
}

.ag-filter-panel {
  padding: 2rem 0;
}

.ag-filter-panel__header {
  margin-bottom: 2rem;
}

.ag-filter-panel__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.ag-filter-panel__label {
  background: var(--ag-color-forest-900);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.ag-filter-list {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ag-filter-panel__subheading {
  font-size: 1rem;
  color: var(--ag-color-ink-600);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.5;
}

.ag-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.ag-pagination-wrapper .page,
.ag-pagination-wrapper .next,

.ag-pagination-wrapper .prev {
  padding: 0.5rem 0.875rem;
  min-height: 44px;
  min-width: 44px;
  background: #fff;
  border: 1.5px solid rgba(14, 62, 41, 0.1);
  border-radius: 12px;
  color: var(--ag-color-forest-900);
  font-size: 0.8125rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ag-pagination-wrapper .page:hover,
.ag-pagination-wrapper .next:hover,

.ag-pagination-wrapper .prev:hover {
  border-color: var(--ag-color-forest-900);
  background: rgba(14, 62, 41, 0.05);
}

.ag-pagination-wrapper .current {
  background: var(--ag-color-forest-900);
  color: #fff;
  border-color: var(--ag-color-forest-900);
  padding: 0.5rem 0.875rem;
  min-height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14, 62, 41, 0.25);
}

.ag-filter-list {
  gap: 0.5rem;
}

.ag-filter-pill {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.ag-filter-panel__heading {
  font-size: 1.5rem;
}





.ag-filter-panel {
  padding: 3rem 0;
}

.ag-filter-panel__header {
  margin-bottom: 3rem;
}

.ag-filter-panel__heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.ag-filter-list {
  gap: 1rem;
}

.ag-featured-collection {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.ag-featured-collection__header--centered {
  margin-bottom: 3rem;
}

.ag-featured-collection__grid--home {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  gap: 2rem;
}

/* Testimonials */
.ag-testimonials {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.ag-testimonials__header {
  max-width: 72ch;
}

.ag-testimonials__12col-grid {
  gap: 3rem;
}

/* Discovery Links */
.ag-discovery-links {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.ag-discovery-links__grid {
  gap: clamp(2rem, 4vw, 4rem);
}

/* Home Promo */

.ag-featured-collection__grid--home,
.ag-featured-collection__grid {
  gap: 0.75rem;
}

.ag-card__content {
  padding: 0.875rem;
}

.ag-card__title {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

.ag-card__excerpt {
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.ag-card__price {
  font-size: 1.125rem;
}

.ag-card__add-btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.625rem;
  min-height: 32px;
}

.ag-featured-collection__header--centered {
  margin-bottom: 1.5rem;
}

.ag-kicker {
  font-size: 0.65rem;
  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-featured-collection {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.ag-featured-collection {
  background-color: #FFFCF5;
}

.ag-filter-panel {
  padding: 1.5rem 0;
}

.ag-filter-panel__heading {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.ag-filter-panel__subheading {
  font-size: 0.875rem;
}

.ag-filter-list {
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.ag-filter-pill {
  padding: 0.4375rem 0.875rem;
  font-size: 0.6875rem;
}





.ag-story-badge {
  width: 70px;
  height: 70px;
  padding: 0.625rem;
  font-size: 0.5625rem;
  top: -0.75rem;
  right: -0.75rem;
}






.ag-featured-collection {
  background: #fffcf7 !important;
}

.ag-featured-collection__grid--home {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}

.ag-filter-pill.is-active {
  background: #1a4731 !important;
  border-color: #1a4731 !important;
}

.ag-featured-collection__grid--home {
  grid-template-columns: repeat(2, 1fr) !important;
}

.ag-featured-collection__grid--home {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
}

.ag-featured-collection__header--centered {
  margin-bottom: 1.25rem;
}

.ag-kicker {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}

.ag-featured-collection__header h2,
.ag-featured-collection__header .h1 {
  font-size: 1.375rem;
}

.ag-featured-collection__subheading {
  font-size: 0.75rem;
  line-height: 1.4;
}

.ag-featured-collection__grid--home,
.ag-featured-collection__grid {
  gap: 0.625rem;
}

.ag-card__content {
  padding: 0.75rem;
}

.ag-card__title {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.ag-product-card__rating {
  margin-bottom: 0.375rem;
}

.ag-product-card__stars {
  font-size: 8px;
  letter-spacing: 0.5px;
}

.ag-product-card__rating-label {
  font-size: 7px;
}

.ag-card__excerpt {
  font-size: 0.6875rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.ag-card__footer {
  padding-top: 0.625rem;
}

.ag-card__price {
  font-size: 1rem;
}

.ag-card__add-btn {
  padding: 0.375rem 0.625rem;
  font-size: 0.5625rem;
  min-height: 28px;
  border-radius: 8px;
}

.ag-card__add-btn svg {
  width: 12px;
  height: 12px;
}

.ag-card__micro-copy {
  font-size: 0.5625rem;
  margin-top: 0.375rem;
}

.ag-card__badge-floating {
  padding: 0.25rem 0.5rem;
  font-size: 0.5625rem;
  bottom: 0.625rem;
  left: 0.625rem;
}

.ag-card__badge-floating svg {
  width: 10px;
  height: 10px;
}

.ag-filter-panel {
  padding: 1rem 0;
}

.ag-filter-panel__label {
  font-size: 0.5625rem;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0.625rem;
}

.ag-filter-panel__heading {
  font-size: 1.25rem;
}

.ag-filter-panel__subheading {
  font-size: 0.75rem;
}

.ag-filter-list {
  gap: 0.375rem;
  margin-top: 1rem;
}

.ag-filter-pill {
  padding: 0.375rem 0.625rem;
  font-size: 0.5625rem;
}










.ag-story-badge {
  width: 60px;
  height: 60px;
  font-size: 0.5rem;
  padding: 0.5rem;
  top: -0.5rem;
  right: -0.5rem;
}

.ag-filter-panel {
  padding: 2.5rem 0;
}

.ag-filter-panel__header {
  margin-bottom: 2.5rem;
}

.ag-filter-panel__heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.ag-filter-list {
  gap: 0.875rem;
}



.ag-pagination-wrapper .page,
.ag-pagination-wrapper .next,

.ag-pagination-wrapper .prev {
  font-size: 0.8125rem;
  font-weight: 700;
}

.ag-pagination-wrapper .current {
  font-weight: 800;
}

.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;
}

.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-story-badge {
  width: 60px;
  height: 60px;
  padding: 0.5rem;
  font-size: 0.5rem;
  top: -0.625rem;
  right: -0.625rem;
  border-radius: 50%;
}







.ag-pagination-wrapper {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 62, 41, 0.08);
}

.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;
}

.ag-filter-panel {
  padding: 1.25rem 0;
}

.ag-filter-panel__label {
  font-size: 0.5625rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.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.688rem 1rem;
  font-size: 0.625rem;
  min-height: 44px;
}





.ag-story-badge {
  width: 60px;
  height: 60px;
  padding: 0.5rem;
  font-size: 0.5rem;
  top: -0.625rem;
  right: -0.625rem;
  border-radius: 50%;
}







.ag-pagination-wrapper {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 62, 41, 0.08);
}

.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;
}

.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;
}

.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.75rem 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-flex !important;
  align-items: center !important;
  min-height: 44px !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;
}

.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-discovery-links {
  padding-block: 2.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-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.75rem 1rem !important;
  margin-bottom: 0.625rem !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !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.688rem 0.875rem !important;
  font-size: 0.5625rem !important;
  min-height: 44px !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;
}

.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);
  align-items: stretch;
}

.ag-featured-blog__grid-home {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .ag-featured-blog__grid-home,
  .ag-blog__grid.ag-featured-blog__grid-home {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    display: grid !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Ensure blog cards stack properly and fill width on mobile */
.ag-blog-fallback-card,
.ag-search-result {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Make card content responsive on mobile */
.ag-blog-fallback-card h3,
.ag-search-result h3 {
  font-size: 1.125rem !important;
  line-height: 1.4 !important;
}

.ag-blog-fallback-card p,
.ag-search-result p {
  font-size: 0.875rem !important;
}

.ag-featured-blog__grid-home {
  gap: 1rem;
}



.ag-featured-collection__grid--home {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 900px !important;
}

.ag-featured-collection__grid--home {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 600px !important;
}

.ag-featured-collection__grid--home {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.875rem !important;
}

.ag-featured-collection__grid--home {
  gap: 0.625rem !important;
}

.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;
}

.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;
}

.ag-featured-collection__grid--home {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: none !important;
}

.ag-featured-collection__grid--home {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !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-discovery-links {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.ag-discovery-links__column {
  padding: 1.25rem !important;
  border-radius: 1.25rem !important;
}

.ag-discovery-links__title {
  font-size: 1.125rem !important;
}

.ag-featured-collection__view-all {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.ag-featured-collection__header {
  display: block !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 800px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.ag-featured-collection__header>div {
  display: inline-block !important;
  text-align: center !important;
}

.ag-featured-collection__view-all::after {
  content: " →" !important;
}

.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;
}

.ag-filter-panel__label {
  background: #0e3e29 !important;
  color: #fff !important;
}

.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;
}

.ag-featured-collection__grid--home {
  gap: 2rem !important;
}

.ag-featured-collection__grid--home {
  grid-template-columns: repeat(2, 1fr) !important;
}

.ag-featured-collection__grid--home {
  gap: 0.75rem !important;
}

.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;
}

.ag-featured-collection {
  background: #fffcf7 !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-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;
}

.ag-featured-collection__grid--home>li {
  display: flex !important;
}

.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, #f6b900, #d4941a, #f6b900);
  -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;
}

.ag-featured-blog-section article {
  background: linear-gradient(to bottom right,
      #0e3e29,
      #184a2c,
      #0a1f17) !important;
  border-radius: 1rem !important;
}

.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;
}

.ag-featured-blog-section article p {
  color: rgba(180, 212, 196, 1) !important;
}

.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;
}

.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;
}

.ag-featured-blog-card-title>a,
.ag-featured-blog-card-title>a:visited {
  color: inherit !important;
  text-decoration: none !important;
}

.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;
}

.ag-featured-blog-section article .p-12,
.ag-featured-blog-section article .p-14 {
  padding: 3rem !important;
}

.ag-featured-blog-section article .p-12 {
  padding: 3.5rem !important;
}

.ag-filter-pill,
.ag-tag-pill,

.ag-filter-pill.is-active,
.ag-tag-pill.is-active,

.ag-filter-pill:hover,
.ag-tag-pill:hover,

.ag-filter-pill:focus-visible,
.ag-tag-pill:focus-visible,

.ag-filter-pill,
.ag-tag-pill,

.ag-filter-pill,
.ag-tag-pill,

/* Cards: minimum padding maintained */
.ag-card,
.ag-card--collection,
.ag-card--premium,
.ag-card--blog {
  padding: 1.1rem 0.9rem 1.1rem !important;
}

/* Timeline: minimal spacing */
.ag-timeline,
.timeline-component {
  gap: 1.8rem !important;
}

/* ========================================
   MIGRATED FROM CINEMA-COMPONENTS.CSS
   2026-03-05
   ======================================== */

/* ============================================
  from {
    opacity: 0;
    transform: rotate(-180deg);
  }

  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}

/* ============================================
   cinema-announcement.css
   ============================================ */

/*
 * Cinema Announcement Bar Polish
 * PX-005: Contrast and spacing refinements
 */

.ag-announcement {
  background: linear-gradient(135deg, #0e3e29 0%, #133528 100%);
  color: #fff;
  font-family: var(--ag-font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ag-announcement__inner {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 0.625rem;
}

.ag-announcement p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

.ag-announcement__dot {
  color: rgba(246, 185, 0, 0.7);
  font-size: 0.5rem;
}

.ag-announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  color: #f6b900;
  transition: opacity var(--ag-motion-duration-fast, 120ms) ease;
}

.ag-announcement a:hover {
  opacity: 0.85;
  color: #fff;
}

@media (max-width: 768px) {
  .ag-announcement {
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
  }

  .ag-announcement__inner {
    min-height: 2.25rem;
    padding-block: 0.5rem;
    padding-inline: 0.75rem;
  }

  /* Clamp responsive announcement content to one line */
  .ag-announcement p,
  .ag-announcement__inner>a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-width: 100%;
  }

  .ag-announcement p {
    display: block;
  }
}


/* ============================================
   mobile-menu-clean.css
   ============================================ */

/* ==============================================================================
   MOBILE MENU CLEANUP - Declutter & Simplify
   Removes visual noise, creates cleaner experience
   ============================================================================== */

/* ==============================================================================
   REMOVE/SIMPLIFY WATERMARK
   ============================================================================== */

/* Remove the distracting watermark logo entirely */
    opacity: 0.6;
  }
}


/* ============================================
   section-newsletter.css
   ============================================ */

/* 
 * Newsletter Section Styles
 * Supports: stacked, inline, card layouts
 * Uses base.css design tokens
 */

.newsletter-section {
  padding-top: calc(var(--ag-space-12) * 1);
  padding-bottom: calc(var(--ag-space-12) * 1);
}

.newsletter-section__container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: var(--ag-space-4);
}

@media (min-width: 640px) {
  .newsletter-section__container {
    padding-inline: var(--ag-space-6);
  }
}

@media (min-width: 1024px) {
  .newsletter-section__container {
    padding-inline: var(--ag-space-8);
  }
}

/* ========================================
   Background Color Variants
   ======================================== */

.newsletter-section--cream {
  background-color: var(--ag-color-cream-100);
}

.newsletter-section--forest {
  background: linear-gradient(135deg, #133528 0%, #0f3320 50%, #0a2618 100%);
  color: #fff;
}

.newsletter-section--gold {
  background: linear-gradient(135deg, var(--ag-color-gold-50) 0%, var(--ag-color-gold-100) 100%);
}

/* ========================================
   Content Typography
   ======================================== */

.newsletter-section__content {
  margin-bottom: var(--ag-space-6);
}

.newsletter-section__content--center {
  text-align: center;
}

.newsletter-section__heading {
  font-family: var(--ag-font-display);
  font-size: var(--ag-h3-size);
  font-weight: var(--ag-font-weight-bold);
  line-height: var(--ag-line-height-tight);
  color: inherit;
  margin: 0 0 var(--ag-space-3);
}

.newsletter-section--forest .newsletter-section__heading {
  color: #fff;
}

.newsletter-section--forest .newsletter-section__heading em,
.newsletter-section--forest .newsletter-section__heading span {
  color: var(--ag-color-gold-400);
  font-style: normal;
}

.newsletter-section--cream .newsletter-section__heading {
  color: var(--ag-color-forest-900);
}

.newsletter-section__subheading {
  font-family: var(--ag-font-body);
  font-size: var(--ag-font-size-base);
  line-height: var(--ag-line-height-relaxed);
  color: var(--ag-color-ink-600);
  margin: 0;
  max-width: 32rem;
}

.newsletter-section--forest .newsletter-section__subheading {
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-section--cream .newsletter-section__subheading {
  color: var(--ag-color-ink-600);
}

.newsletter-section__content--center .newsletter-section__subheading {
  margin-inline: auto;
}

/* ========================================
   Form Styles
   ======================================== */

.newsletter-section__form {
  width: 100%;
}

.newsletter-section__form-group {
  display: flex;
  flex-direction: column;
  gap: var(--ag-space-3);
}

@media (min-width: 640px) {

  .newsletter-section__form-group--inline,
  .newsletter-section--stacked .newsletter-section__form-group {
    flex-direction: row;
  }
}

.newsletter-section__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--ag-space-3);
  max-width: 28rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .newsletter-section__form-wrapper {
    flex-direction: row;
    max-width: 32rem;
  }
}

.newsletter-section__input {
  flex: 1;
  height: 3.25rem;
  padding-inline: var(--ag-space-4);
  background: #fff;
  border: 2px solid var(--ag-color-cream-300);
  border-radius: var(--ag-radius-lg);
  font-size: var(--ag-font-size-base);
  font-family: var(--ag-font-ui);
  color: var(--ag-color-ink-900);
  transition: all 0.2s ease;
}

.newsletter-section__input:focus {
  outline: none;
  border-color: var(--ag-color-gold-500);
  box-shadow: 0 0 0 3px rgba(243, 82, 1, 0.15);
}

.newsletter-section__input::placeholder {
  color: var(--ag-color-ink-400);
}

/* Forest background input styles */
.newsletter-section--forest .newsletter-section__input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.newsletter-section--forest .newsletter-section__input:focus {
  border-color: var(--ag-color-gold-400);
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
}

.newsletter-section--forest .newsletter-section__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Button Styles
   ======================================== */

.newsletter-section__button {
  height: 3.25rem;
  padding-inline: var(--ag-space-6);
  background: linear-gradient(to right, var(--ag-color-gold-500), var(--ag-color-gold-600));
  color: #fff;
  border: none;
  border-radius: var(--ag-radius-lg);
  font-size: var(--ag-font-size-base);
  font-weight: var(--ag-font-weight-bold);
  font-family: var(--ag-font-ui);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.newsletter-section__button:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(243, 82, 1, 0.3);
  transform: translateY(-2px);
}

.newsletter-section__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 82, 1, 0.4);
}

.newsletter-section__button--full {
  width: 100%;
}

@media (min-width: 640px) {
  .newsletter-section__button--full {
    width: auto;
    min-width: 10rem;
  }
}

/* Forest background button - slightly brighter */
.newsletter-section--forest .newsletter-section__button {
  box-shadow: 0 4px 16px rgba(243, 82, 1, 0.25);
}

/* ========================================
   Message States
   ======================================== */

.newsletter-section__message {
  display: flex;
  align-items: center;
  gap: var(--ag-space-3);
  margin-top: var(--ag-space-4);
  padding: var(--ag-space-3) var(--ag-space-4);
  border-radius: var(--ag-radius-md);
  font-size: var(--ag-font-size-sm);
  animation: fadeIn 0.3s ease;
}

.newsletter-section__message--success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #059669;
}

.newsletter-section--forest .newsletter-section__message--success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.newsletter-section__message--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #dc2626;
}

.newsletter-section--forest .newsletter-section__message--error {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.newsletter-section__icon {
  flex-shrink: 0;
}

/* ========================================
   Privacy Text
   ======================================== */

.newsletter-section__privacy {
  margin-top: var(--ag-space-4);
  font-size: var(--ag-font-size-xs);
  text-align: center;
  color: var(--ag-color-ink-500);
}

.newsletter-section--forest .newsletter-section__privacy {
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Card Layout
   ======================================== */

.newsletter-section__card {
  max-width: 32rem;
  margin-inline: auto;
  padding: var(--ag-space-6);
  background: var(--ag-color-cream-100);
  border: 1px solid var(--ag-color-cream-300);
  border-radius: var(--ag-radius-xl);
  text-align: center;
}

@media (min-width: 640px) {
  .newsletter-section__card {
    padding: var(--ag-space-8);
  }
}

.newsletter-section--forest .newsletter-section__card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.newsletter-section--forest .newsletter-section__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--ag-color-gold-500), var(--ag-color-gold-400), var(--ag-color-forest-400));
}

.newsletter-section--forest .newsletter-section__card .newsletter-section__heading {
  color: #fff;
}

.newsletter-section--forest .newsletter-section__card .newsletter-section__subheading {
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Inline Layout
   ======================================== */

.newsletter-section__inline {
  display: flex;
  flex-direction: column;
  gap: var(--ag-space-6);
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .newsletter-section__inline {
    flex-direction: row;
    text-align: left;
    gap: var(--ag-space-10);
  }

  .newsletter-section__inline .newsletter-section__content {
    flex-shrink: 0;
    max-width: 24rem;
    margin-bottom: 0;
  }

  .newsletter-section__inline .newsletter-section__form {
    flex: 1;
    max-width: 32rem;
  }
}

/* ========================================
   Stacked Layout (Default)
   ======================================== */

.newsletter-section__stacked {
  text-align: center;
}

.newsletter-section__stacked .newsletter-section__content {
  margin-bottom: var(--ag-space-6);
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Visually Hidden (Accessibility)
   ======================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================
   badge-certificates.css
   ============================================ */

/* ============================================================
   HERITAGE CERTIFICATES - Premium Badge Redesign
   Transforms generic trust badges into tactile agricultural
   credentials with paper textures, seal aesthetics, and
   editorial refinement.
   ============================================================ */

/* ============================================================
   CERTIFICATE BASE - Paper texture & decorative frame
   ============================================================ */

.template-page-about .ag-sp__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 640px) {
  .template-page-about .ag-sp__badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Certificate card with paper texture */
.template-page-about .ag-sp__badge-card {
  position: relative;
  background: linear-gradient(145deg,
      rgba(255, 253, 248, 0.95) 0%,
      rgba(253, 250, 243, 0.92) 50%,
      rgba(251, 247, 240, 0.95) 100%);
  border: none;
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(14, 62, 41, 0.08),
    0 8px 24px rgba(14, 62, 41, 0.04);
}

/* Paper grain texture overlay */
.template-page-about .ag-sp__badge-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Decorative border frame */
.template-page-about .ag-sp__badge-card::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 148, 26, 0.2);
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.template-page-about .ag-sp__badge-card:hover::after {
  opacity: 1;
}

/* Hover state - subtle lift with warm glow */
.template-page-about .ag-sp__badge-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(14, 62, 41, 0.12),
    0 0 0 1px rgba(212, 148, 26, 0.15),
    0 0 0 4px rgba(212, 148, 26, 0.05);
}

/* ============================================================
   WAX SEAL ICONS - Tactile stamp aesthetic
   ============================================================ */

.template-page-about .ag-sp__badge-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

/* Seal base - wax appearance */
.template-page-about .ag-sp__badge-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, currentColor 0%, currentColor 100%);
  opacity: 0.15;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Irregular wax edge effect */
.template-page-about .ag-sp__badge-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-icon::after {
  opacity: 1;
}

/* Icon positioning */
.template-page-about .ag-sp__badge-icon svg {
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-icon {
  transform: scale(1.1);
}

/* Certificate ribbon accent */
.template-page-about .ag-sp__badge-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      currentColor 50%,
      transparent 100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  mix-blend-mode: multiply;
}

.template-page-about .ag-sp__badge-card:hover::before {
  opacity: 0.3;
  width: 80%;
}

/* ============================================================
   SEAL COLOR VARIANTS
   ============================================================ */

/* Forest Green - Organic Certification */
.template-page-about .ag-sp__badge-icon--forest {
  color: #0e3e29;
}

.template-page-about .ag-sp__badge-icon--forest::before {
  background: linear-gradient(145deg,
      rgba(14, 62, 41, 0.15) 0%,
      rgba(14, 62, 41, 0.08) 50%,
      rgba(14, 62, 41, 0.15) 100%);
}

/* Trust Blue - FDA/Regulatory */
.template-page-about .ag-sp__badge-icon--blue {
  color: #1e40af;
}

.template-page-about .ag-sp__badge-icon--blue::before {
  background: linear-gradient(145deg,
      rgba(30, 64, 175, 0.12) 0%,
      rgba(30, 64, 175, 0.06) 50%,
      rgba(30, 64, 175, 0.12) 100%);
}

/* Natural Green - Pure/Natural */
.template-page-about .ag-sp__badge-icon--green {
  color: #059669;
}

.template-page-about .ag-sp__badge-icon--green::before {
  background: linear-gradient(145deg,
      rgba(5, 150, 105, 0.12) 0%,
      rgba(5, 150, 105, 0.06) 50%,
      rgba(5, 150, 105, 0.12) 100%);
}

/* Terra Cotta - Heritage/Farming */
.template-page-about .ag-sp__badge-icon--terra {
  color: #c2410c;
}

.template-page-about .ag-sp__badge-icon--terra::before {
  background: linear-gradient(145deg,
      rgba(194, 65, 12, 0.15) 0%,
      rgba(194, 65, 12, 0.08) 50%,
      rgba(194, 65, 12, 0.15) 100%);
}

/* ============================================================
   TYPOGRAPHY - Certificate credentials styling
   ============================================================ */

.template-page-about .ag-sp__badge-title {
  position: relative;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 600;
  font-style: italic;
  color: var(--ag-color-forest-900);
  line-height: 1.3;
  letter-spacing: 0.02em;
  z-index: 2;
  transition: all 0.3s ease;
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-title {
  color: var(--ag-color-gold-mix);
}

/* Subtitle - credential authority */
.template-page-about .ag-sp__badge-sub {
  position: relative;
  font-family: var(--ag-font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ag-color-text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(14, 62, 41, 0.1);
  z-index: 2;
  transition: all 0.3s ease;
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-sub {
  color: var(--ag-color-forest-900);
  border-top-color: rgba(212, 148, 26, 0.3);
}

/* ============================================================
   CERTIFICATE STAMP EFFECT - Hover reveal
   ============================================================ */

/* Stamp overlay effect on hover */
.template-page-about .ag-sp__badge-card:hover {
  animation: certificateStamp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes certificateStamp {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.05);
  }

  100% {
    transform: translateY(-6px) scale(1.02);
  }
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 639px) {
  .template-page-about .ag-sp__badge-card {
    padding: 1.5rem 1rem;
    gap: 0.875rem;
  }

  .template-page-about .ag-sp__badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }

  .template-page-about .ag-sp__badge-title {
    font-size: 0.9rem;
  }

  .template-page-about .ag-sp__badge-sub {
    font-size: 0.6rem;
  }
}

@media (min-width: 1024px) {
  .template-page-about .ag-sp__badge-card {
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }

  .template-page-about .ag-sp__badge-icon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.75rem;
  }
}

/* ============================================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================================ */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .template-page-about .ag-sp__badge-card,
  .template-page-about .ag-sp__badge-icon,
  .template-page-about .ag-sp__badge-icon svg,
  .template-page-about .ag-sp__badge-title,
  .template-page-about .ag-sp__badge-sub {
    transition: none;
    animation: none;
  }

  .template-page-about .ag-sp__badge-card:hover {
    transform: translateY(-4px);
  }

  .template-page-about .ag-sp__badge-card:hover .ag-sp__badge-icon {
    transform: scale(1.05);
  }
}

/* Focus visible for keyboard navigation */
.template-page-about .ag-sp__badge-card:focus-within {
  outline: 2px solid var(--ag-color-forest-900);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .template-page-about .ag-sp__badge-card {
    border: 2px solid var(--ag-color-forest-900);
  }

  .template-page-about .ag-sp__badge-icon::before {
    opacity: 0.3;
  }

  .template-page-about .ag-sp__badge-sub {
    border-top-width: 2px;
  }
}

/* Touch targets - ensure cards are tappable */
@media (pointer: coarse) {
  .template-page-about .ag-sp__badge-card {
    min-height: 160px;
    justify-content: center;
  }
}

/* ============================================================
   DARK MODE SUPPORT (if needed)
   ============================================================ */

@media (prefers-color-scheme: dark) {
  .template-page-about .ag-sp__badge-card {
    background: linear-gradient(145deg,
        rgba(30, 46, 40, 0.95) 0%,
        rgba(25, 40, 35, 0.92) 50%,
        rgba(30, 46, 40, 0.95) 100%);
    box-shadow:
      0 2px 8px rgba(0, 0, 0, 0.3),
      0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .template-page-about .ag-sp__badge-title {
    color: rgba(255, 255, 255, 0.95);
  }

  .template-page-about .ag-sp__badge-card:hover .ag-sp__badge-title {
    color: var(--ag-color-gold-500);
  }

  .template-page-about .ag-sp__badge-sub {
    color: rgba(255, 255, 255, 0.7);
    border-top-color: rgba(255, 255, 255, 0.15);
  }

  .template-page-about .ag-sp__badge-card:hover .ag-sp__badge-sub {
    color: rgba(255, 255, 255, 0.9);
    border-top-color: rgba(212, 148, 26, 0.4);
  }

  .template-page-about .ag-sp__badge-card::after {
    border-color: rgba(212, 148, 26, 0.3);
  }
}

/* ============================================================
   PRINT STYLES - Certificate appearance in print
   ============================================================ */

@media print {
  .template-page-about .ag-sp__badge-card {
    background: #fff !important;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    page-break-inside: avoid;
  }

  .template-page-about .ag-sp__badge-card::before,
  .template-page-about .ag-sp__badge-card::after {
    display: none !important;
  }

  .template-page-about .ag-sp__badge-icon {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}


/* ============================================
   badge-specimens.css
   ============================================ */

/* ============================================================
   BOTANICAL SPECIMEN CARDS - Museum Display Aesthetic
   Transforms trust badges into scientific specimen cards with
   museum-quality presentation, botanical illustration vibes,
   and unexpected sophistication.
   ============================================================ */

/* ============================================================
   SPECIMEN GRID - Museum display layout
   ============================================================ */

.template-page-about .ag-sp__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  position: relative;
}

@media (min-width: 640px) {
  .template-page-about .ag-sp__badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Museum case background pattern */
.template-page-about .ag-sp__badges::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background-image:
    linear-gradient(rgba(14, 62, 41, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 62, 41, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   SPECIMEN CARD BASE - Museum case styling
   ============================================================ */

.template-page-about .ag-sp__badge-card {
  position: relative;
  background: linear-gradient(135deg,
      rgba(255, 254, 251, 0.98) 0%,
      rgba(253, 250, 245, 0.96) 50%,
      rgba(251, 248, 242, 0.98) 100%);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(14, 62, 41, 0.08),
    inset 0 0 0 1px rgba(14, 62, 41, 0.05);
  z-index: 1;
}

/* Specimen box grid pattern overlay */
.template-page-about .ag-sp__badge-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 62, 41, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 62, 41, 0.04) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.template-page-about .ag-sp__badge-card:hover::before {
  opacity: 1;
}

/* Corner ornaments - museum frame detail */
.template-page-about .ag-sp__badge-card::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 148, 26, 0.15);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  clip-path: polygon(0 8px, 8px 8px, 8px 0,
      calc(100% - 8px) 0, calc(100% - 8px) 8px, 100% 8px,
      100% calc(100% - 8px), calc(100% - 8px) calc(100% - 8px), calc(100% - 8px) 100%,
      8px 100%, 8px calc(100% - 8px), 0 calc(100% - 8px));
}

.template-page-about .ag-sp__badge-card:hover::after {
  opacity: 1;
  inset: 6px;
}

/* Hover state - specimen reveal */
.template-page-about .ag-sp__badge-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(14, 62, 41, 0.12),
    0 0 0 1px rgba(212, 148, 26, 0.1),
    0 0 0 6px rgba(212, 148, 26, 0.03);
  background: linear-gradient(135deg,
      rgba(255, 254, 251, 1) 0%,
      rgba(254, 251, 246, 0.98) 50%,
      rgba(252, 249, 243, 1) 100%);
}

/* ============================================================
   SPECIMEN ILLUSTRATION - Scientific icon styling
   ============================================================ */

.template-page-about .ag-sp__badge-icon {
  position: relative;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}

/* Illustration circle background - specimen mount */
.template-page-about .ag-sp__badge-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.4) 40%,
      transparent 70%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

/* Concentric specimen rings */
.template-page-about .ag-sp__badge-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0;
  transition: all 0.4s ease;
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-icon::after {
  opacity: 0.3;
  inset: 2px;
}

/* Icon styling */
.template-page-about .ag-sp__badge-icon svg {
  position: relative;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-icon {
  transform: scale(1.08);
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-icon svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Museum pin accent */
.template-page-about .ag-sp__badge-card::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.template-page-about .ag-sp__badge-card:hover::before {
  opacity: 0.4;
}

/* ============================================================
   SPECIMEN COLOR VARIANTS - Botanical palette
   ============================================================ */

/* Forest - Organic certification */
.template-page-about .ag-sp__badge-icon--forest {
  color: #0e3e29;
}

/* Blue - FDA/Regulatory */
.template-page-about .ag-sp__badge-icon--blue {
  color: #1e3a5f;
}

/* Green - Natural/Pure */
.template-page-about .ag-sp__badge-icon--green {
  color: #047857;
}

/* Terra - Heritage/Farming */
.template-page-about .ag-sp__badge-icon--terra {
  color: #b45309;
}

/* ============================================================
   SPECIMEN LABELS - Museum typography
   ============================================================ */

.template-page-about .ag-sp__badge-title {
  position: relative;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 500;
  color: var(--ag-color-forest-900);
  line-height: 1.3;
  letter-spacing: 0.03em;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Specimen name format - italic scientific style */
.template-page-about .ag-sp__badge-title::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      currentColor 50%,
      transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-title::before {
  opacity: 0.3;
  width: 80%;
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-title {
  color: var(--ag-color-gold-mix);
}

/* Subtitle - catalog number style */
.template-page-about .ag-sp__badge-sub {
  position: relative;
  font-family: var(--ag-font-ui);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--ag-color-text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  background: rgba(14, 62, 41, 0.03);
  border-radius: 2px;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Catalog number prefix */
.template-page-about .ag-sp__badge-sub::before {
  content: 'REF: ';
  font-weight: 600;
  opacity: 0.7;
  margin-right: 0.25rem;
}

.template-page-about .ag-sp__badge-card:hover .ag-sp__badge-sub {
  background: rgba(212, 148, 26, 0.08);
  color: var(--ag-color-forest-900);
}

/* ============================================================
   SPECIMEN ANIMATIONS - Museum reveal effects
   ============================================================ */

/* Staggered entrance animation */
.template-page-about .ag-sp__badge-card {
  animation: specimenReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.template-page-about .ag-sp__badge-card:nth-child(1) {
  animation-delay: 0.1s;
}

.template-page-about .ag-sp__badge-card:nth-child(2) {
  animation-delay: 0.2s;
}

.template-page-about .ag-sp__badge-card:nth-child(3) {
  animation-delay: 0.3s;
}

.template-page-about .ag-sp__badge-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes specimenReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hover micro-animation */
.template-page-about .ag-sp__badge-card:hover {
  animation: specimenLift 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes specimenLift {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 639px) {
  .template-page-about .ag-sp__badge-card {
    padding: 1.75rem 1.25rem;
    gap: 1rem;
  }

  .template-page-about .ag-sp__badge-icon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.5rem;
  }

  .template-page-about .ag-sp__badge-title {
    font-size: 0.95rem;
  }

  .template-page-about .ag-sp__badge-sub {
    font-size: 0.55rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (min-width: 1024px) {
  .template-page-about .ag-sp__badge-card {
    padding: 2.25rem 1.75rem;
    gap: 1.5rem;
  }

  .template-page-about .ag-sp__badge-icon {
    width: 5.5rem;
    height: 5.5rem;
    font-size: 2rem;
  }
}

/* ============================================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================================ */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .template-page-about .ag-sp__badge-card,
  .template-page-about .ag-sp__badge-icon,
  .template-page-about .ag-sp__badge-icon svg,
  .template-page-about .ag-sp__badge-title,
  .template-page-about .ag-sp__badge-sub {
    animation: none !important;
    transition: none;
  }

  .template-page-about .ag-sp__badge-card:hover {
    transform: translateY(-4px);
  }

  .template-page-about .ag-sp__badge-card:hover .ag-sp__badge-icon {
    transform: scale(1.03);
  }
}

/* Focus visible for keyboard navigation */
.template-page-about .ag-sp__badge-card:focus-within {
  outline: 2px solid var(--ag-color-forest-900);
  outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .template-page-about .ag-sp__badge-card {
    border: 2px solid var(--ag-color-forest-900);
  }

  .template-page-about .ag-sp__badge-icon::after {
    opacity: 0.5 !important;
  }

  .template-page-about .ag-sp__badge-title::before {
    opacity: 0.5 !important;
  }
}

/* Touch targets - ensure cards are tappable */
@media (pointer: coarse) {
  .template-page-about .ag-sp__badge-card {
    min-height: 180px;
    justify-content: center;
  }
}

/* ============================================================
   DARK MODE SUPPORT
   ============================================================ */

@media (prefers-color-scheme: dark) {
  .template-page-about .ag-sp__badge-card {
    background: linear-gradient(135deg,
        rgba(28, 42, 38, 0.98) 0%,
        rgba(24, 38, 34, 0.96) 50%,
        rgba(28, 42, 38, 0.98) 100%);
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.4),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }

  .template-page-about .ag-sp__badge-card::before {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  }

  .template-page-about .ag-sp__badge-title {
    color: rgba(255, 255, 255, 0.95);
  }

  .template-page-about .ag-sp__badge-card:hover .ag-sp__badge-title {
    color: var(--ag-color-gold-500);
  }

  .template-page-about .ag-sp__badge-sub {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
  }

  .template-page-about .ag-sp__badge-card:hover .ag-sp__badge-sub {
    background: rgba(212, 148, 26, 0.12);
    color: rgba(255, 255, 255, 0.85);
  }

  .template-page-about .ag-sp__badge-icon::before {
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        transparent 70%);
  }
}

/* ============================================================
   PRINT STYLES - Specimen sheet appearance
   ============================================================ */

@media print {
  .template-page-about .ag-sp__badge-card {
    background: #fff !important;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .template-page-about .ag-sp__badge-card::before,
  .template-page-about .ag-sp__badge-card::after {
    display: none !important;
  }

  .template-page-about .ag-sp__badge-icon {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .template-page-about .ag-sp__badge-title::before {
    display: none !important;
  }
}

/* ============================================================
   SPECIMEN CARD WATERMARK (optional decorative element)
   ============================================================ */

/* Add specimen number watermark */
.template-page-about .ag-sp__badge-card {
  counter-increment: specimen-counter;
}

.template-page-about .ag-sp__badge-card::after {
  content: counter(specimen-counter, decimal-leading-zero);
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--ag-font-ui);
  font-size: 0.5rem;
  font-weight: 600;
  color: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.template-page-about .ag-sp__badge-card:hover::after {
  opacity: 0.15;
}

/* ========================================
   MIGRATED FROM CINEMA-FOOTER-REFINED.CSS
   2026-03-05
   ======================================== */

/* ============================================
   MIGRATED FROM CINEMA-PRODUCT-CARD.CSS
   2026-03-05
   ======================================== */

/* ==========================================================================
   CARD BASE - Applies to all product cards
   ========================================================================== */

.ag-fc-card,
.ag-card--collection {
  background: #fff;
  border: 1px solid rgba(15, 61, 46, 0.08);
  border-radius: var(--ag-radius-card);
  overflow: hidden;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.07),
    0 12px 48px rgba(0, 0, 0, 0.05);
  transition: all 0.6s var(--ag-ease-emphasized);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Gradient border effect on hover */
.ag-fc-card::before,
.ag-card--collection::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--ag-radius-card);
  padding: 2px;
  background: linear-gradient(135deg,
      rgba(246, 185, 0, 0.35),
      transparent 40%,
      transparent 60%,
      rgba(234, 88, 12, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.ag-fc-card:hover::before,
.ag-card--collection:hover::before {
  opacity: 1;
}

.ag-fc-card:hover,
.ag-card--collection:hover {
  transform: translateY(-16px);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(246, 185, 0, 0.25);
}

.ag-fc-card__link,
.ag-card--collection .ag-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   MEDIA SECTION
   ========================================================================== */

.ag-fc-card__media,
.ag-card--collection .ag-card__media-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ag-color-cream-200) 0%, var(--ag-color-cream-300) 100%);
}

.ag-fc-card__media::before,
.ag-card--collection .ag-card__media-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(14, 62, 41, 0) 0%,
      rgba(14, 62, 41, 0.04) 100%);
  z-index: 2;
  pointer-events: none;
}

.ag-fc-card__media img,
.ag-card--collection .ag-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ag-ease-emphasized);
}

.ag-fc-card:hover .ag-fc-card__media img,
.ag-card--collection:hover .ag-card__img {
  transform: scale(1.1);
}

/* ==========================================================================
   BADGES
   ========================================================================== */

/* Weight badge - top left - Ultra Premium Design */
.ag-fc-card__weight-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: linear-gradient(135deg,
      rgba(14, 62, 41, 0.92) 0%,
      rgba(10, 46, 33, 0.88) 100%);
  color: #f6b900;
  font-family: var(--ag-font-display, 'Fraunces', Georgia, serif);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(246, 185, 0, 0.4);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.25),
    0 3px 10px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

/* Subtle shine effect */
.ag-fc-card__weight-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.6s ease;
}

.ag-fc-card:hover .ag-fc-card__weight-badge {
  transform: translateY(-2px);
  border-color: rgba(246, 185, 0, 0.6);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(246, 185, 0, 0.2);
}

.ag-fc-card:hover .ag-fc-card__weight-badge::before {
  left: 100%;
}

/* Promotional badge - top right */
.ag-fc-card__badge,
.ag-card--collection .ag-card__badge-floating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: var(--ag-color-forest-900, #0e3e29);
  color: #F6B900;
  font-family: var(--ag-font-ui, 'Work Sans', sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.625rem 1rem;
  border-radius: var(--ag-radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow:
    0 6px 16px rgba(14, 62, 41, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ag-fc-card__badge svg,
.ag-card--collection .ag-card__badge-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* ==========================================================================
   CONTENT SECTION
   ========================================================================== */

.ag-fc-card__content,
.ag-card--collection .ag-card__content {
  position: relative;
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ag-fc-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

/* Origin/Location */
.ag-fc-card__origin {
  font-family: var(--ag-font-ui, 'Work Sans', sans-serif);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ag-color-forest-600, #215840);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ag-fc-card__origin::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #F6B900;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(246, 185, 0, 0.7);
}

/* Title */
.ag-fc-card__title,
.ag-card--collection .ag-card__title {
  font-family: var(--ag-font-display, 'Fraunces', serif);
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ag-color-forest-950, #0a1f17);
  margin: 0 0 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.15em * 2);
}

.ag-card--collection .ag-card__title-link {
  text-decoration: none;
  display: block;
}

/* Rating */
.ag-fc-card__rating,
.ag-card--collection .ag-product-card__rating {
  margin-bottom: 1.25rem;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.625rem;
}

.ag-fc-card__rating .ag-stars,
.ag-card--collection .ag-product-card__stars {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 2px !important;
  color: #F6B900 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  white-space: nowrap !important;
}

.ag-fc-card__rating .ag-stars svg,
.ag-card--collection .ag-product-card__stars svg {
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
  fill: currentColor !important;
  vertical-align: middle !important;
  margin: 0 !important;
  clear: none !important;
}

/* Don't target all spans - it breaks the stars! */
.ag-fc-card__rating>span:not(.ag-stars),
.ag-card--collection .ag-product-card__stars {
  color: #F6B900;
  font-size: 0.95rem;
  letter-spacing: 2.5px;
}

.ag-fc-card__rating small,
.ag-card--collection .ag-product-card__rating-label {
  font-family: var(--ag-font-body, 'Crimson Text', serif);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--ag-color-ink-500, #6b6b6b);
}

/* Description - Now allows 4 lines */
.ag-fc-card__desc,
.ag-card--collection .ag-card__excerpt {
  font-family: var(--ag-font-body, 'Crimson Text', serif);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ag-color-ink-600, #525252);
  margin-bottom: 1.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.45em * 4);
}

.ag-card--collection .ag-card__content-spacer {
  flex: 1;
  min-height: 1rem;
}

/* ==========================================================================
   FOOTER - Price and Add Button
   ========================================================================== */

.ag-fc-card__footer,
.ag-card--collection .ag-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(14, 62, 41, 0.08);
}

.ag-fc-card__footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Variant Dropdown */
.ag-fc-card__variant-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ag-fc-card__variant-label {
  font-family: var(--ag-font-ui, 'Work Sans', sans-serif);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ag-color-forest-600, #215840);
  white-space: nowrap;
}

.ag-fc-card__variant-select {
  font-family: var(--ag-font-ui, 'Work Sans', sans-serif);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ag-color-forest-950, #0a1f17);
  background: #fff;
  border: 1px solid rgba(14, 62, 41, 0.15);
  border-radius: var(--ag-radius-sm);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition:
    border-color 0.2s var(--ag-ease-emphasized),
    box-shadow 0.2s var(--ag-ease-emphasized);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%230e3e29' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
  min-width: 100px;
}

.ag-fc-card__variant-select:hover {
  border-color: rgba(246, 185, 0, 0.4);
}

.ag-fc-card__variant-select:focus {
  outline: none;
  border-color: #F6B900;
  box-shadow: 0 0 0 3px rgba(246, 185, 0, 0.15);
}

.ag-fc-card__price,
.ag-card--collection .ag-card__price {
  font-family: var(--ag-font-display, 'Fraunces', serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--ag-color-forest-950, #0e3e29);
  line-height: 1;
}

.ag-card--collection .ag-card__price::first-letter {
  font-size: 0.65em;
  opacity: 0.85;
}

/* Add Button */
.ag-fc-card__btn,
.ag-card--collection .ag-card__add-btn {
  background: linear-gradient(135deg, #0e3e29 0%, #1a5e3f 100%);
  color: #f6b900;
  border: none;
  border-radius: var(--ag-radius-sm);
  font-family: var(--ag-font-ui, 'Work Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition:
    transform 0.2s var(--ag-ease-emphasized),
    box-shadow 0.2s var(--ag-ease-emphasized);
  box-shadow:
    0 2px 8px rgba(14, 62, 41, 0.25),
    inset 0 1px 0 rgba(246, 185, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  width: 100%;
}

.ag-fc-card form {
  width: 100%;
}

.ag-fc-card__btn:hover,
.ag-card--collection .ag-card__add-btn:hover {
  background: linear-gradient(135deg, #1a5e3f 0%, #0e3e29 100%);
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(14, 62, 41, 0.35),
    inset 0 1px 0 rgba(246, 185, 0, 0.3);
}

.ag-fc-card__btn svg,
.ag-card--collection .ag-card__add-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {

  .ag-fc-card__price,
  .ag-card--collection .ag-card__price {
    font-size: clamp(26px, 3.5vw, 36px);
  }

  .ag-fc-card__footer-top {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .ag-fc-card__variant-wrapper {
    flex-shrink: 0;
  }

  .ag-fc-card__variant-select {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 768px) {

  .ag-fc-card__content,
  .ag-card--collection .ag-card__content {
    padding: 1.25rem;
  }

  .ag-fc-card__title,
  .ag-card--collection .ag-card__title {
    font-size: 1.15rem;
  }

  .ag-fc-card__price,
  .ag-card--collection .ag-card__price {
    font-size: clamp(24px, 4vw, 32px);
  }

  .ag-fc-card__variant-label {
    font-size: 0.65rem;
  }

  .ag-fc-card__variant-select {
    font-size: 0.75rem;
    padding: 0.45rem 0.65rem;
  }
}

@media (max-width: 480px) {

  .ag-fc-card__price,
  .ag-card--collection .ag-card__price {
    font-size: clamp(22px, 5vw, 28px);
  }

  .ag-fc-card__btn,
  .ag-card--collection .ag-card__add-btn {
    font-size: 0.7rem;
    padding: 0.65rem 1.25rem;
  }
}

/* ========================================
   MIGRATED from cinema-global.css/base.css
   Selectors actually used in Liquid templates
   2026-03-05
   ======================================== */

.ag-discovery-links {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.ag-button--primary:active {
  transform: translateY(0) scale(0.98);
}

.ag-button--ghost:active {
  transform: translateY(0) scale(0.98);
}

.ag-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 4200;
  pointer-events: none;
}

.ag-cart-drawer__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(0 0 0 / 0.36);
  opacity: 0;
  transition: opacity 220ms ease;
}

.ag-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 92vw);
  height: 100dvh;
  background: #f8f2e8;
  border-left: 1px solid rgb(14 62 41 / 0.12);
  box-shadow: -12px 0 32px rgb(0 0 0 / 0.18);
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* Cart drawer open state */
.is-cart-open .ag-cart-drawer {
  pointer-events: auto;
}

.is-cart-open .ag-cart-drawer__panel,
.ag-cart-drawer[aria-hidden="false"] .ag-cart-drawer__panel {
  transform: translateX(0);
}

.is-cart-open .ag-cart-drawer__overlay,
.ag-cart-drawer[aria-hidden="false"] .ag-cart-drawer__overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   PRODUCT CARD — OVERLAY LINK PATTERN (A11Y-003 fix)
   Title link covers the card via ::after; interactive children sit above.
   ========================================================================== */

/* The title link is the sole keyboard-accessible product navigation link.
   Its ::after stretches to cover the entire card at z-index 1 so mouse
   clicks on the card image/body navigate to the product. Interactive
   elements (form, select, button) are at z-index 2+ and intercept clicks
   correctly, providing correct AT behavior without nested-interactive HTML. */
.ag-fc-card__title-link {
  color: inherit;
  text-decoration: none;
  position: static;
}

.ag-fc-card__title-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--ag-radius-card);
}

.ag-fc-card__title-link:focus-visible::after {
  outline: 3px solid var(--ag-color-gold-bright);
  outline-offset: 2px;
}

/* Footer interactive children sit above the overlay */
.ag-fc-card__footer {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   ACCESSIBILITY UTILITIES
   ========================================================================== */

/* Screen-reader-only text — visually hidden but accessible to AT */
.ag-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}






/* Product card footer row lock: price left, weight/dropdown right */
.ag-fc-card__footer {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.75rem !important;
}

.ag-fc-card__footer-top {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 0 !important;
}

.ag-fc-card__footer form {
  width: 100% !important;
}

.ag-fc-card__btn,
.ag-card--collection .ag-card__add-btn {
  width: 100% !important;
}

.ag-fc-card__price-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  width: 100% !important;
  min-height: 2.5rem !important;
}

.ag-fc-card__price-row .ag-fc-card__price {
  margin: 0 !important;
  text-align: left !important;
  flex: 0 0 auto !important;
}

.ag-fc-card__variant-wrapper {
  margin-left: auto !important;
  flex: 0 0 auto !important;
  width: min(8.75rem, 48%) !important;
  max-width: 8.75rem !important;
}

.ag-fc-card__variant-select {
  width: 100% !important;
  min-width: 0 !important;
}

.ag-fc-card__weight-static {
  margin-left: auto !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: var(--ag-color-forest-950, #0e3e29) !important;
  white-space: nowrap !important;
  text-align: right !important;
}

@media (max-width: 768px) {
  .ag-fc-card__price-row {
    min-height: 2.2rem !important;
    gap: 0.55rem !important;
  }

  .ag-fc-card__variant-wrapper {
    width: min(7rem, 50%) !important;
    max-width: 7rem !important;
  }
}

/* ============================================================
   HERO CANONICAL TYPOGRAPHY CLASSES
   Shared across homepage hero and about page hero.
   Apply these classes directly in Liquid to ensure parity
   without per-page selector overrides.
   ============================================================ */

/* Eyebrow — Caveat script, gold accent underline */
.ag-hero-eyebrow {
  font-family: "Caveat", cursive !important;
  font-size: clamp(20px, 5vw, 32px) !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  letter-spacing: normal !important;
  display: inline-block !important;
  position: relative !important;
  margin-bottom: clamp(0.875rem, 2vh, 1.25rem) !important;
  white-space: nowrap !important;
}

.ag-hero-eyebrow::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -0.35rem !important;
  width: 60px !important;
  height: 1px !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(90deg, transparent 0%, #f6b900 50%, transparent 100%) !important;
}

/* H1 — Fraunces display, weight 300 */
.ag-hero-h1 {
  font-family: "Fraunces", "Times New Roman", serif !important;
  font-size: clamp(2.4rem, 5.4vw, 4.9rem) !important;
  font-weight: 300 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: clamp(0.75rem, 1.5vh, 1.25rem) !important;
}

@media (max-width: 768px) {
  .ag-hero-h1 {
    font-size: clamp(2rem, 8.5vw, 3rem) !important;
  }
}

/* Subtext — Crimson Text, 25px, weight 600 */
.ag-hero-subtext {
  font-family: "Crimson Text", Georgia, serif !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 1.22 !important;
  letter-spacing: 0.01em !important;
  max-width: 32ch !important;
  margin-inline: auto !important;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem) !important;
  text-align: center !important;
}

@media (max-width: 768px) {
  .ag-hero-subtext {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem) !important;
    line-height: 1.35 !important;
  }
}

/* CTA button — pill shape, homepage hero sizing */
.ag-hero-cta {
  padding: 1rem 2.25rem !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  min-height: 50px !important;
  min-width: 180px !important;
  border-radius: 999px !important;
}

@media (max-width: 768px) {
  .ag-hero-cta {
    padding: 0.875rem 1.75rem !important;
    min-height: 46px !important;
    min-width: 160px !important;
  }
}

/* SEO: Prevent CLS on product card images by reserving space */
.ag-fc-card__media img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
}
