/** Shopify CDN: Minification failed

Line 526:38 Unexpected "var("
Line 594:45 Expected number but found "var("
Line 598:40 Unexpected "var("
Line 622:45 Expected number but found "var("
Line 626:40 Unexpected "var("

**/
/* =========================================================
   AFS ANNOUNCEMENT BAR
========================================================= */

.afs-announcement-bar {
  position: relative;
  z-index: 30;

  width: 100%;
  min-height: 4.8rem;

  color: #ffffff;
  background: #000000;
  overflow: hidden;
}

.afs-announcement-bar .page-width {
  height: 100%;
}

/* =========================================================
   Inner layout
========================================================= */

.afs-announcement-bar__inner {
  display: grid;
  grid-template-columns: 4rem minmax(0, 72rem) 4rem;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 4.8rem;
  margin-inline: auto;
}

/* =========================================================
   Messages
========================================================= */

.afs-announcement-bar__messages {
  position: relative;

  width: 100%;
  height: 2rem;

  overflow: hidden;
}

.afs-announcement-bar__message {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.6rem);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s;
}

.afs-announcement-bar__message.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================================================
   Text
========================================================= */

.afs-announcement-bar__text {
  display: block;

  width: 100%;
  margin: 0;

  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

.afs-announcement-bar__text p {
  margin: 0;

  color: inherit;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

a.afs-announcement-bar__text:hover {
  color: rgba(255, 255, 255, 0.78);
}

.afs-announcement-bar__text em,
.afs-announcement-bar__text strong {
  color: inherit;
}

/* =========================================================
   Navigation
========================================================= */

.afs-announcement-bar__arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 4rem;
  height: 4rem;
  padding: 0;

  border: 0;
  border-radius: 50%;

  color: #ffffff;
  background: transparent;

  cursor: pointer;

  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.afs-announcement-bar__arrow:hover {
  opacity: 0.65;
}

.afs-announcement-bar__arrow:active {
  transform: scale(0.9);
}

.afs-announcement-bar__arrow:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: -0.4rem;
}

.afs-announcement-bar__arrow svg {
  display: block;
  width: 1.7rem;
  height: 1.7rem;
}

.afs-announcement-bar__arrow--prev {
  justify-self: start;
}

.afs-announcement-bar__arrow--next {
  justify-self: end;
}

.afs-announcement-bar__arrow-placeholder {
  display: block;
  width: 4rem;
  height: 4rem;
}

/* =========================================================
   Mobile
========================================================= */

@media screen and (max-width: 749px) {
  .afs-announcement-bar {
    min-height: 4.4rem;
  }

  .afs-announcement-bar__inner {
    grid-template-columns: 3.6rem minmax(0, 1fr) 3.6rem;
    min-height: 4.4rem;
  }

  .afs-announcement-bar__messages {
    height: 2.8rem;
  }

  .afs-announcement-bar__arrow,
  .afs-announcement-bar__arrow-placeholder {
    width: 3.6rem;
    height: 3.6rem;
  }

  .afs-announcement-bar__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .afs-announcement-bar__text p {
    font-size: 1.1rem;
    line-height: 1.25;
  }
}

/* =========================================================
   Reduced motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .afs-announcement-bar__message,
  .afs-announcement-bar__arrow {
    transition: none;
  }
}

/* Footer css */

.afs-footer {
  border-top: 1px solid var(--afs-color-border);
background:
  radial-gradient(
    circle at 0% 0%,
    rgba(255, 255, 250, 0.98) 0%,
    rgba(255, 255, 245, 0.78) 22%,
    transparent 48%
  ),
  radial-gradient(
    circle at 100% 0%,
    rgba(255, 255, 250, 0.98) 0%,
    rgba(255, 255, 245, 0.78) 22%,
    transparent 48%
  ),
  radial-gradient(
    circle at 0% 100%,
    rgba(255, 255, 250, 0.98) 0%,
    rgba(255, 255, 245, 0.78) 22%,
    transparent 48%
  ),
  radial-gradient(
    circle at 100% 100%,
    rgba(255, 255, 250, 0.98) 0%,
    rgba(255, 255, 245, 0.78) 22%,
    transparent 48%
  ),
  linear-gradient(
    180deg,
    #f8e79a5e 0%,
    #fff9d6 45%,
    #fffbe7 60%,
    #f7dc8362 100%
  );
 
}

.afs-footer__link {
  display: block;
  color: var(--afs-text-primary);
  text-decoration: none;
  font-size: 1.3rem;
  line-height: 1.8;
}

.afs-footer__link:hover {
  color: var(--afs-text-accent);
}

.afs-footer__form {
  width: 100%;
}

.afs-footer__input {
  min-height: 5.6rem;
  flex: 1;
  border: 1px solid var(--afs-color-border);
  border-radius: 999px;
  padding: 0 2.4rem;
  background: var(--afs-color-white);
  color: var(--afs-text-primary);
}

.afs-footer__input::placeholder {
  color: var(--afs-text-secondary);
}

.afs-footer__bottom {
  margin-top: 6rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--afs-color-border);
}


/* ===============================
   Footer Bottom
================================ */

.afs-footer__bottom{
    margin-top:6rem;
    padding-top:3rem;
    border-top:1px solid var(--afs-color-border);
}

.afs-footer__payments{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
    margin-top:1.5rem;
}

.afs-footer__payments li{
    list-style:none;
}

.afs-footer__payments svg{
    width:4rem;
    height:auto;
}

@media screen and (max-width: 749px) {
  .afs-footer {
    padding: 5rem 0 3rem;
  }

  .afs-footer__newsletter {
    margin-top: 3rem;
  }

  .afs-footer__input,
  .afs-footer .afs-btn {
    width: 100%;
  }
}


/* =========================================================
   AFS Hero BANNER
========================================================= */

.afs-hero-banner {
  min-height: var(--afs-banner-min-height-desktop);
  background: var(--afs-color-cream);
}

.afs-hero-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.afs-hero-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.afs-hero-banner__image--desktop {
  display: block;
}

.afs-hero-banner__image--mobile {
  display: none;
}

.afs-hero-banner .page-width {
  position: relative;
  z-index: 1;
}

.afs-hero-banner .page-width,
.afs-hero-banner .afs-row {
    height: 100%;
}

.afs-hero-banner__content {
    min-height: inherit;
}


.afs-hero-banner__offer {
  border-top: 1px solid var(--afs-color-border);
  border-bottom: 1px solid var(--afs-color-border);
  padding: var(--afs-space-4) 0;
}

.afs-hero-banner__offer-title em {
  color: var(--afs-text-accent);
  font-style: italic;
}

.afs-hero-banner__text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--afs-space-1);
  text-decoration: none;
  color: var(--afs-text-secondary);
}

.afs-hero-banner__text-link:hover {
  color: var(--afs-text-accent);
}

@media screen and (max-width: 749px) {
  .afs-hero-banner {
    min-height: var(--afs-banner-min-height-mobile);
  }

  .afs-hero-banner__image--desktop {
    display: none;
  }

  .afs-hero-banner__image--mobile {
    display: block;
  }

  .afs-hero-banner__content {
    padding-top: var(--afs-space-6);
    padding-bottom: var(--afs-space-6);
  }
}
.afs-image-banner::before,
.afs-image-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 749px) {
  .afs-image-banner::before {
    top: 0;
    height: 38%;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0)
    );
  }

  .afs-image-banner::after {
    bottom: 0;
    height: 58%;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0)
    );
  }

  .afs-image-banner .page-width {
    z-index: 2;
  }

  .afs-image-banner__content {
    min-height: var(--afs-banner-min-height-mobile);
    text-align: center;
    color: #fff;
  }

  .afs-image-banner .afs-display,
  .afs-image-banner .afs-body-lg,
  .afs-image-banner .afs-meta,
  .afs-image-banner .afs-note,
  .afs-image-banner .afs-heading-md {
    color: #fff;
  }

  .afs-image-banner .afs-eyebrow {
    color: var(--afs-text-gold);
  }

  .afs-image-banner__offer {
    border-color: rgba(243, 223, 122, 0.45);
  }

  .afs-image-banner__top {
    padding-top: var(--afs-space-5);
  }

  .afs-image-banner__bottom {
    padding-bottom: var(--afs-space-5);
  }
}


/* =========================================================
   AFS ICON FEATURE ROW
========================================================= */

.afs-icon-feature-row {
  border-top: 1px solid var(--afs-color-border);
  border-bottom: 1px solid var(--afs-color-border);
}

/* ---------- Grid ---------- */

/* Desktop */
.afs-icon-feature-row__grid--desktop-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.afs-icon-feature-row__grid--desktop-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.afs-icon-feature-row__grid--desktop-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.afs-icon-feature-row__grid--desktop-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.afs-icon-feature-row__grid--desktop-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.afs-icon-feature-row__grid--desktop-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

/* ---------- Item ---------- */

.afs-icon-feature-row__item {
  min-width: 0;
  width:100%;
  display: flex;
  flex-direction: column;
  padding: var(--afs-space-3);
  border-right: 1px solid var(--afs-color-border);
}

.afs-icon-feature-row__item:nth-child(var(--afs-icon-columns-desktop, 4)n) {
  border-right: 0;
}

/* ---------- Icon ---------- */

.afs-icon-feature-row__icon {
  display: flex;
  align-items: center;
}

.afs-icon-feature-row__icon img,
.afs-icon-feature-row__icon svg {
  width: 4.8rem;
  height: 4.8rem;
  display: block;
  object-fit: contain;
}

/* ---------- Small eyebrow ---------- */

.afs-eyebrow--sm {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  opacity: 0.8;
}

/* ---------- Title ---------- */

.afs-icon-feature-row__title {
  width: 100%;
  font-family: var(--afs-font-body);
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--afs-text-primary);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ---------- Description ---------- */

.afs-icon-feature-row .afs-rte,
.afs-icon-feature-row .afs-body,
.afs-icon-feature-row p {
  margin: 0;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 989px) {
  .afs-icon-feature-row__grid {
    .afs-icon-feature-row__grid--tablet-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .afs-icon-feature-row__grid--tablet-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .afs-icon-feature-row__grid--tablet-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .afs-icon-feature-row__grid--tablet-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  }

  .afs-icon-feature-row__item {
    padding: var(--afs-space-5);
    border-right: 1px solid var(--afs-color-border);
    border-top: 1px solid var(--afs-color-border);
  }

  .afs-icon-feature-row__item:nth-child(-n + var(--afs-icon-columns-tablet, 2)) {
    border-top: 0;
  }

  .afs-icon-feature-row__item:nth-child(var(--afs-icon-columns-tablet, 2)n) {
    border-right: 0;
  }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 749px) {
  .afs-icon-feature-row__grid {
     .afs-icon-feature-row__grid--mobile-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .afs-icon-feature-row__grid--mobile-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    gap: 0;
  }

  .afs-icon-feature-row__item {
    padding: var(--afs-space-2) var(--afs-space-3);
    border-right: 1px solid var(--afs-color-border);
    border-top: 1px solid var(--afs-color-border);
    border-bottom: 1px solid var(--afs-color-border);
    border-left: 1px solid var(--afs-color-border);
  }

  .afs-icon-feature-row__item:nth-child(-n + var(--afs-icon-columns-mobile, 2)) {
    border-top: 1px;
  }

  .afs-icon-feature-row__item:nth-child(var(--afs-icon-columns-mobile, 2)n) {
    border-right: 1px;
  }

  .afs-icon-feature-row__icon img,
  .afs-icon-feature-row__icon svg {
    width: 3rem;
    height: 3rem;
  }

  .afs-icon-feature-row__title {
    font-size: 1.5rem;
  }
  .afs-icon-feature-row .afs-rte,
.afs-icon-feature-row .afs-body,
.afs-icon-feature-row p {
  margin: 0;
  font-size:12px;
}
  
}

/* =========================================================
   AFS FEATURED COLLECTION
========================================================= */

/* =========================================================
   SECTION
========================================================= */

.afs-featured-collection__link {
  color: var(--afs-text-primary);
  text-decoration: none;
  transition: color var(--afs-transition-fast);
}

.afs-featured-collection__link:hover {
  color: var(--afs-text-accent);
}

.featured-collection-content{
    border: 1.5px solid var(--afs-color-border);
  border-radius: var(--afs-radius-md);
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.afs-product-card-custom {
  width: 100%;
  height: 100%;
  min-width: 0;

  display: flex;
  flex-direction: column;

  background: var(--afs-color-ivory);
  border: 1.5px solid var(--afs-color-border);
  border-radius: var(--afs-radius-md);

  overflow: hidden;
}

.afs-product-card-custom__bought {
  font-size: 1.2rem;
}

/* =========================================================
   PRODUCT MEDIA
========================================================= */

.afs-product-card-custom__media {
  position: relative;

  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;

  overflow: hidden;

  background: var(--afs-color-ivory);
  border-radius: 10px;
}

.afs-product-card-custom__image {
  position: absolute;
  inset: 0;

  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    opacity 0.35s ease,
    transform 0.6s ease;
}

.afs-product-card-custom__image--primary {
  opacity: 1;
}

.afs-product-card-custom__image--secondary {
  opacity: 0;
}

/* =========================================================
   PRODUCT CARD IMAGE HOVER
   Desktop and mouse devices only
========================================================= */

@media (hover: hover) and (pointer: fine) {
  .afs-product-card-custom:hover
    .afs-product-card-custom__image--primary {
    opacity: 0;
    transform: scale(1.04);
  }

  .afs-product-card-custom:hover
    .afs-product-card-custom__image--secondary {
    opacity: 1;
    transform: scale(1.04);
  }
}

/* =========================================================
   MOBILE / TOUCH DEVICES
   Always show the primary image only
========================================================= */

@media screen and (max-width: 749px),
  (hover: none) and (pointer: coarse) {
  .afs-product-card-custom__image--primary {
    opacity: 1 !important;
    transform: none !important;
  }

  .afs-product-card-custom__image--secondary {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .afs-product-card-custom__image {
    transition: none;
  }

  .afs-product-card-custom__media {
    touch-action: manipulation;
  }
}

/* =========================================================
   CONTENT
========================================================= */

.afs-product-card-custom__content {
  flex: 1;
  min-width: 0;

  display: flex;
  flex-direction: column;

  padding: var(--afs-space-2);
}

.afs-product-card-custom__body {
  flex: 1;
  min-width: 0;
}

.afs-product-card-custom__footer {
  width: 100%;
  margin-top: auto;
}

/* =========================================================
   RATING
========================================================= */

.afs-product-card-custom__rating {
  min-width: 0;
}

.afs-stars {
  color: var(--afs-color-gold);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

/* =========================================================
   TITLE
========================================================= */

.afs-product-card-custom__title {
  display: block;

  color: var(--afs-text-primary);
  text-decoration: none;
  text-transform: uppercase;

  font-size: clamp(1rem, 1.2vw, 1.5rem);
  line-height: 1.3;

  transition: color var(--afs-transition-fast);
}

.afs-product-card-custom__title:hover {
  color: var(--afs-text-accent);
}

/* =========================================================
   OPTIONAL STANDALONE PRICE
========================================================= */

.afs-product-card-custom__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;

  margin-bottom: var(--afs-space-4);

  color: var(--afs-text-primary);
  font-size: 1.4rem;
  font-weight: 600;
}

.afs-product-card-custom__price-sale {
  color:#a34914!important;
}

.afs-product-card-custom__price-compare {
  color: var(--afs-text-secondary);

  opacity: 0.7;

  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* =========================================================
   PRODUCT FORM
========================================================= */

.afs-product-card-custom__form {
  width: 100%;
  min-width: 0;
  margin-top: auto;
}

/* =========================================================
   ADD TO CART BUTTON
========================================================= */

.afs-product-card-custom__button {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content:space-between;
  gap: 1rem;
  padding: 0.8rem 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--afs-color-yellow);
  color: var(--afs-text-primary);
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    background var(--afs-transition-fast),
    transform var(--afs-transition-fast),
    opacity var(--afs-transition-fast);
}

.afs-product-card-custom__button:hover {
  background: var(--afs-color-yellow-hover);
}

.afs-product-card-custom__button:active {
  transform: scale(0.98);
}

.afs-product-card-custom__button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.afs-product-card-custom__button:disabled {
  justify-content: center;

  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/*
  Prevent generic theme button rules from repositioning
  or hiding the nested icon and price elements.
*/

.afs-product-card-custom__button span,
.afs-product-card-custom__button s {
  position: static;
  inset: auto;

  width: auto;
  height: auto;
  margin: 0;

  color: inherit;

  opacity: 1;
  visibility: visible;
  transform: none;
}

/* =========================================================
   CART ICON — LEFT
========================================================= */

.afs-product-card-custom__button-icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.afs-product-card-custom__button-icon svg {
  display: block;
  width: 3rem;
  height: 3rem;
}

.afs-product-card-custom__button-icon svg path,
.afs-product-card-custom__button-icon svg circle,
.afs-product-card-custom__button-icon svg line,
.afs-product-card-custom__button-icon svg polyline,
.afs-product-card-custom__button-icon svg rect {
  stroke: currentColor;
}

/* =========================================================
   DIVIDER
========================================================= */

/*
  The divider is no longer needed.
  It remains hidden even though it is still in the Liquid.
*/

.afs-product-card-custom__button-divider {
  display: none;
}

/* =========================================================
   BUTTON PRICE GROUP — RIGHT
========================================================= */

.afs-product-card-custom__button-prices {
  min-width: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
}

/* Current selling or discounted price */

.afs-product-card-custom__button-current-price {
  order: 1;
  flex: 0 0 auto;

  color: inherit;

  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;
}

/* Original compare-at price */

.afs-product-card-custom__button-compare-price {
  order: 2;
  flex: 0 0 auto;
  color:#a34914!important;

  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;

  white-space: nowrap;
  opacity: 0.5;

  text-decoration: line-through;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
}

/* =========================================================
   PREVIOUS CLASS NAME COMPATIBILITY
========================================================= */

/*
  These selectors keep older product-card markup working
  if it is still used in another section.
*/

.afs-product-card-custom__button-price {
  order: 1;
  flex: 0 0 auto;

  color: inherit;

  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;
}

.afs-product-card-custom__button-price-compare {
  order: 2;
  flex: 0 0 auto;

  color: inherit;

  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;

  white-space: nowrap;
  opacity: 0.5;

  text-decoration: line-through;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
}

/* =========================================================
   SOLD OUT
========================================================= */

.afs-product-card-custom__button-sold-out {
  width: 100%;
  display: block;

  color: inherit;

  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 989px) {
  .afs-product-card-custom__button {
    gap: 0.8rem;
    padding-inline: 1.3rem;
  }

  .afs-product-card-custom__button-prices {
    gap: 0.55rem;
  }

  .afs-product-card-custom__button-current-price,
  .afs-product-card-custom__button-price {
    font-size: 1.2rem;
  }

  .afs-product-card-custom__button-compare-price,
  .afs-product-card-custom__button-price-compare {
    font-size: 1rem;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 767px) {
  .afs-product-card-custom__content {
    padding: 0.8rem;
  }

  .afs-product-card-custom__bought {
    font-size: 1rem;
  }

  .afs-stars {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
  }

  .afs-product-card-custom__title {
    margin-top: 0.35rem;
    margin-bottom: 0.8rem;

    font-size: 1rem;
    line-height: 1.25;
  }

  /*
    Mobile keeps the exact same simple structure:
    icon on the left and price group on the right.
  */

  .afs-product-card-custom__button {
    min-height: 4rem;

    gap: 0.6rem;

    padding: 0.55rem 1rem;

    font-size: 1rem;
  }

  .afs-product-card-custom__button-icon {
    width: 2.55rem;
    height: 2.55rem;
    flex: 0 0 2.55rem;
  }

  .afs-product-card-custom__button-icon svg {
    width: 2.55rem;
    height: 2.55rem;
  }

  .afs-product-card-custom__button-prices {
    margin-left: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    white-space: nowrap;
  }

  .afs-product-card-custom__button-current-price,
  .afs-product-card-custom__button-price {
    order: 1;
    font-size: 1.5rem;
    font-weight: 700;
  }

  .afs-product-card-custom__button-compare-price,
  .afs-product-card-custom__button-price-compare {
    order: 2;
    font-size: 1.25rem;
    font-weight: 500;
  }

  .afs-product-card-custom__button-sold-out {
    font-size: 1.2rem;
  }
}

/* =========================================================
   VERY SMALL MOBILE CARDS
========================================================= */

@media screen and (max-width: 390px) {
  .afs-product-card-custom__button {
    min-height: 3.8rem;
    gap: 0.45rem;
    padding-inline: 0.8rem;
  }

  .afs-product-card-custom__button-icon {
    width: 1.55rem;
    height: 1.55rem;
    flex-basis: 1.55rem;
  }

  .afs-product-card-custom__button-icon svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .afs-product-card-custom__button-prices {
    gap: 0.35rem;
  }

  .afs-product-card-custom__button-current-price,
  .afs-product-card-custom__button-price {
    font-size: 1.2rem;
  }

  .afs-product-card-custom__button-compare-price,
  .afs-product-card-custom__button-price-compare {
    font-size: 1rem;
  }
}



/* =========================================================
   AFS FEATURED PRESS
========================================================= */

.afs-featured-press {
  width: 100%;
  overflow: hidden;

  border-top: 1px solid var(--afs-color-border);
  border-bottom: 1px solid var(--afs-color-border);
}

/* =========================================================
   Header
========================================================= */

.afs-featured-press__header {
  position: relative;
}

.afs-featured-press__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--afs-space-3);
}

.afs-featured-press__eyebrow::before,
.afs-featured-press__eyebrow::after {
  content: "";

  display: block;
  width: 4rem;
  height: 1px;

  background: var(--afs-color-border);
}

/* =========================================================
   Marquee
========================================================= */

.afs-featured-press__marquee {
  width: 100%;
  overflow: hidden;
}

.afs-featured-press__viewport {
  container-type: inline-size;

  width: 100%;
  padding-block: var(--afs-press-padding, 1.6rem);
  overflow: hidden;

  /*
   * Number of logo slots visible at once.
   */
  --afs-press-visible: 6;
  --afs-press-item-gap: var(--afs-press-gap, 3.2rem);
}

.afs-featured-press__track {
  display: flex;
  align-items: center;

  width: max-content;

  animation:
    afs-featured-press-scroll
    var(--afs-press-duration, 30s)
    linear
    infinite;

  will-change: transform;
}

.afs-featured-press__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;

  gap: var(--afs-press-item-gap);

  /*
   * Maintains the same spacing where two duplicated
   * marquee groups meet.
   */
  padding-right: var(--afs-press-item-gap);
}

/* =========================================================
   Logo slots
========================================================= */

.afs-featured-press__item {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0
    calc(
      (
        100cqw -
        (
          (var(--afs-press-visible) - 1) *
          var(--afs-press-item-gap)
        )
      ) /
      var(--afs-press-visible)
    );

  min-width: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* =========================================================
   Logo link
========================================================= */

.afs-featured-press__logo {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: var(--afs-press-logo-height, 4.2rem);

  color: var(--afs-text-secondary);
  text-decoration: none;

  opacity: 0.72;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

a.afs-featured-press__logo {
  cursor: pointer;
}

a.afs-featured-press__logo:hover {
  opacity: 1;
  transform: scale(1.04);
}

a.afs-featured-press__logo:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.6rem;
}

/* =========================================================
   Logo image
========================================================= */

.afs-featured-press__logo-image {
  display: block;

  width: auto;
  max-width: 78%;
  height: 100%;
  max-height: var(--afs-press-logo-height, 4.2rem);

  object-fit: contain;
  object-position: center;
}

/* =========================================================
   Text fallback
========================================================= */

.afs-featured-press__logo-text {
  display: block;

  max-width: 90%;

  font-family: var(--afs-font-heading);
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

/* =========================================================
   Marquee interaction
========================================================= */

.afs-featured-press--pause-hover:hover
  .afs-featured-press__track {
  animation-play-state: paused;
}

.afs-featured-press--reverse
  .afs-featured-press__track {
  animation-direction: reverse;
}

/*
 * The Liquid renders six identical groups.
 * Moving one-sixth of the complete track creates a
 * continuous seamless loop.
 */

@keyframes afs-featured-press-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-16.666667%, 0, 0);
  }
}

/* =========================================================
   Tablet
========================================================= */

@media screen and (max-width: 989px) {
  .afs-featured-press__viewport {
    --afs-press-visible: 4;
    --afs-press-item-gap: min(
      var(--afs-press-gap, 3.2rem),
      2.8rem
    );
  }

  .afs-featured-press__logo-image {
    max-width: 76%;
  }
}

/* =========================================================
   Mobile
========================================================= */

@media screen and (max-width: 749px) {
  .afs-featured-press__eyebrow {
    gap: var(--afs-space-2);
  }

  .afs-featured-press__eyebrow::before,
  .afs-featured-press__eyebrow::after {
    width: 2.8rem;
  }

  .afs-featured-press__viewport {
    --afs-press-visible: 2;
    --afs-press-item-gap: 2rem;
  }

  .afs-featured-press__logo-image {
    max-width: 72%;
  }

  .afs-featured-press__logo-text {
    font-size: 1.8rem;
  }
}

/* =========================================================
   Reduced motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .afs-featured-press__track {
    animation-play-state: paused;
  }

  .afs-featured-press__logo {
    transition: none;
  }
}



/* =========================================================
   AFS MEDIA FEATURE
========================================================= */

.afs-media-feature__item > * {
  height: 100%;
}

.afs-media-feature__extra {
  color: var(--afs-text-secondary);
}

.afs-media-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--afs-radius-sm);
}

.afs-media-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.afs-media-card__video,
.afs-media-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--afs-radius-sm);
}

.afs-media-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.2rem;
  height: 4.2rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--afs-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:12px;
}

.afs-media-card__placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--afs-text-secondary);
}


.afs-media-card__title {
  margin: 0;
  font-family: var(--afs-font-body);
  font-size: 1.6rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--afs-text-primary);
}

.afs-media-card__link {
  color: var(--afs-text-primary);
  text-decoration: none;
}

.afs-media-card__link:hover {
  color: var(--afs-text-accent);
}

@media screen and (max-width: 989px) {
  .afs-media-feature__inner {
    grid-template-columns: 1fr;
    gap: var(--afs-space-5);
  }
  .afs-media-card__title {
  font-size: 1rem;

}
.afs-media-card__content {
  padding: var(--afs-space-1);
}
}


/* =========================================================
   AFS BEFORE & AFTER
========================================================= */

.afs-before-after__item {
  min-width: 0;
}

.afs-before-after__item > * {
  height: 100%;
}

/* =========================================================
   AFS COMPARISON CARD
========================================================= */

.afs-comparison-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--afs-color-ivory);
  border: 1px solid var(--afs-color-border);
  border-radius: var(--afs-radius-sm);
}

.afs-comparison-card__media {
  position: relative;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: var(--afs-color-ivory);

  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.afs-comparison-card__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  pointer-events: none;
}

.afs-comparison-card__after {
  position: absolute;
  inset: 0;

  width: var(--afs-comparison-position);

  overflow: hidden;
}

.afs-comparison-card__after .afs-comparison-card__image {
  width: 100%;
  height: 100%;

  max-width: none;

  object-fit: cover;
  object-position: center;
}

/* Divider */

.afs-comparison-card__handle {
  position: absolute;
  inset-block: 0;
  left: var(--afs-comparison-position);

  width: 5rem;

  transform: translateX(-50%);

  border: 0;
  padding: 0;

  background: transparent;

  cursor: ew-resize;

  z-index: 1;
}

.afs-comparison-card__handle::before {
  content: "";

  position: absolute;
  inset-block: 0;
  left: 50%;

  width: 2px;

  transform: translateX(-50%);

  background: rgba(255,255,255,.85);
}

/* Handle */

.afs-comparison-card__handle span {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 4rem;
  height: 4rem;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,.95);

  box-shadow: 0 .8rem 2rem rgba(0,0,0,.15);

  transition:
    transform var(--afs-transition-fast),
    box-shadow var(--afs-transition-fast);
}

.afs-comparison-card:hover .afs-comparison-card__handle span {
  transform: translate(-50%, -50%) scale(1.05);
}

.afs-comparison-card__handle span::before {
  content: "↔";

  color: var(--afs-text-primary);

  font-size: 1.4rem;
  line-height: 1;
}

/* Labels */

.afs-comparison-card__label {
  position: absolute;
  top: var(--afs-space-3);
  z-index: 1;
  padding: .8rem 1.2rem;
  border-radius: var(--afs-radius-pill);
  background: rgba(255,255,255,.90);
  color: var(--afs-text-primary);
  font-size: 1rem;
  font-weight: var(--afs-font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: .18em;
}

.afs-comparison-card__label--before {
  left: var(--afs-space-3);
}

.afs-comparison-card__label--after {
  right: var(--afs-space-3);
}

/* Content */

.afs-comparison-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--afs-space-2);
  padding: var(--afs-space-4);
}

.afs-comparison-card__heading {
  margin: 0;
  color: var(--afs-text-primary);
  font-family: var(--afs-font-body);
  font-size: 1.4rem;
  line-height: 1.35;
  letter-spacing:0;
}

.afs-comparison-card__content .afs-meta {
  margin: 0;
}

.afs-comparison-card__content .afs-note {
  margin-top: var(--afs-space-2);
}

/* Mobile */

@media screen and (max-width: 749px) {

  .afs-comparison-card__media {
    aspect-ratio: 4 / 5;
  }

  .afs-comparison-card__handle span {
    width: 3.6rem;
    height: 3.6rem;
  }

  .afs-comparison-card__heading {
  font-size: 1rem;
}

.afs-comparison-card__label {
  padding: .5rem 1.2rem;
  font-size: 0.7rem;
}
.afs-comparison-card__content {
  gap: var(--afs-space-1);
  padding: var(--afs-space-2);
}
.afs-comparison-card {
  border-radius: var(--afs-radius-md);
}
.afs-comparison-card__content .afs-body{
  font-size:12px;
}

}



/* =========================================================
   AFS COLLECTION SHOWCASE
========================================================= */
.afs-collection-showcase__grid{
  gap:0!important;
}
.afs-collection-showcase {
  overflow: hidden;
}

.afs-collection-showcase__item {
  min-width: 0;
}

.afs-collection-showcase__item > * {
  height: 100%;
}

.afs-collection-card {
  position: relative;
  min-height: 68rem;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--afs-color-white);
  text-decoration: none;
  background: var(--afs-color-ivory);
}

.afs-collection-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--afs-transition);
}

.afs-collection-card:hover .afs-collection-card__image {
  transform: scale(1.04);
}

.afs-collection-card {
  position: relative;
  overflow: hidden;
}

.afs-collection-card::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      to top,
    
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.70) 25%,
      rgba(255,255,255,.15) 50%,
      rgba(255,255,255,0) 75%
    );
}
.afs-collection-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--afs-space-5);
}

.afs-collection-card__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--afs-space-2);
  margin: 0 0 var(--afs-space-5);
  color: var(--afs-text-secondary);
  font-size: 1.4rem;
  font-weight: 600;
}

.afs-collection-card__eyebrow span {
  width: 1rem;
  height: 1rem;
  border-radius: var(--afs-radius-pill);
   background: var(--afs-text-accent);
  flex: none;
}

.afs-collection-card__title {
  margin: 0 0 var(--afs-space-4);
  color: var(--afs-text-primary);
  font-family: var(--afs-font-body);
  font-size: clamp(3.6rem, 4vw, 4.4rem);
  line-height: 0.95;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}

.afs-collection-card__description {
  max-width: 42rem;
  margin-bottom: var(--afs-space-5);
  color: var(--afs-text-secondary);
  font-size: 1.5rem;
  line-height: 1.45;
}

.afs-collection-card__description p {
  margin: 0;
}

.afs-collection-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0 var(--afs-space-5);
  border-radius: var(--afs-radius-pill);
  background: var(--afs-color-dark);
  color: var(--afs-color-white);
  transition: var(--afs-transition);
}

.afs-collection-card__button:hover {
  background: var(--afs-color-brown);
}

@media screen and (max-width: 749px) {
  .afs-collection-card {
    min-height: 52rem;
  }

  .afs-collection-card__content {
    padding: var(--afs-space-4);
  }

  .afs-collection-card__title {
    font-size: clamp(3.2rem, 11vw, 4.4rem);
  }
}

/* =========================================================
   AFS VIDEO SHOWCASE
========================================================= */

.afs-video-showcase {
  overflow: hidden;
}

.afs-video-showcase__item {
  min-width: 0;
}

.afs-video-showcase__item > * {
  height: 100%;
}

.afs-video-showcase-card {
  height: 90%;
  overflow: hidden;
  background: var(--afs-color-ivory);
  border-radius:var(--afs-radius-sm);
}

.afs-video-showcase-card__media {
  position: relative;
  aspect-ratio: 1 / 1.25;
  overflow: hidden;
}

.afs-video-showcase-card__video,
.afs-video-showcase-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.afs-video-showcase-card__placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--afs-text-secondary);
}

.afs-video-showcase-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.12) 45%,
      rgba(0, 0, 0, 0.48) 100%
    );
}

.afs-video-showcase-card__overlay-content {
  position: absolute;
  left: var(--afs-space-4);
  right: var(--afs-space-4);
  top: var(--afs-space-4);
  z-index: 2;
  text-align: center;
}

.afs-video-showcase-card__title {
  margin: 0;
  color: var(--afs-color-white);
  font-family: var(--afs-font-body);
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 600;
}

.afs-video-showcase-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 6rem;
  height: 6rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--afs-radius-pill);
  color: var(--afs-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}


.afs-video-showcase-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.afs-video-showcase-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.afs-floating-video {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  width: 360px;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.afs-floating-video.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.afs-floating-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.afs-floating-video__close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media screen and (max-width: 749px) {

  .afs-floating-video {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 75vh;
    max-height: 75vh;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 -20px 50px rgba(0,0,0,.28);
  }

  .afs-floating-video.is-open {
    transform: translateY(0);
  }

  .afs-floating-video__video{
    width:100%;
    height:100%;
    object-fit:cover;
  }

}


/* =========================================================
   AFS TWO COLUMN
========================================================= */

.afs-two-column__media {
  min-width: 0;
}

.afs-two-column__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--afs-radius-lg);
}

.afs-two-column__placeholder {
  min-height: 48rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--afs-color-ivory);
  border: 1px solid var(--afs-color-border);
  border-radius: var(--afs-radius-lg);
  color: var(--afs-text-secondary);
}

@media screen and (max-width: 749px) {
  .afs-two-column__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}


/* =========================================================
   AFS BANNER CONTENT
========================================================= */

.afs-banner-content {
  position: relative;
  min-height: var(--afs-banner-content-min-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.afs-banner-content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, var(--afs-banner-content-overlay-opacity));
}

.afs-banner-content__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.afs-banner-content__image--mobile {
  display: none;
}

.afs-banner-content__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.afs-banner-content__box {
  color: inherit;
}

.afs-banner-content__box .afs-heading-xl,
.afs-banner-content__box .afs-body,
.afs-banner-content__box .afs-eyebrow {
  color: inherit;
}

.afs-bg-dark .afs-banner-content__box,
.afs-banner-content:has(.afs-banner-content__image) .afs-banner-content__box {
  color: var(--afs-color-white);
}

.afs-bg-dark .afs-banner-content__box .afs-heading-xl,
.afs-bg-dark .afs-banner-content__box .afs-body,
.afs-bg-dark .afs-banner-content__box .afs-eyebrow,
.afs-banner-content:has(.afs-banner-content__image) .afs-banner-content__box .afs-heading-xl,
.afs-banner-content:has(.afs-banner-content__image) .afs-banner-content__box .afs-body,
.afs-banner-content:has(.afs-banner-content__image) .afs-banner-content__box .afs-eyebrow {
  color: var(--afs-color-white);
}

@media screen and (max-width: 749px) {
  .afs-banner-content {
    min-height: min(var(--afs-banner-content-min-height), 620px);
  }

  .afs-banner-content__image--desktop {
    display: none;
  }

  .afs-banner-content__image--mobile {
    display: block;
  }

  .afs-banner-content__buttons {
    flex-direction: column;
    align-items: start;
  }
}



/* =========================================================
   THIRD-PARTY APP OVERRIDES
========================================================= */

.upcart-internal-style__title-large p{
   font-family: var(--afs-font-body);
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--afs-tracking-wider);
  color: var(--afs-text-accent);
  margin: 0;
}


/* =========================================================
   AFS MAIN PRODUCT
========================================================= */

.afs-main-product__info {
  position: sticky;
  top: 10rem;
}

.afs-main-product__title {
  margin: 0 0 var(--afs-space-3);
  font-family: var(--afs-font-heading);
  font-size: clamp(3.2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--afs-text-primary);
}

.afs-main-product__reviews {
  margin-bottom: var(--afs-space-3);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  color: var(--afs-color-gold);
}
.afs-main-product__reviews span{
  font-size: 1.3rem;
  color: var(--afs-text-primary);
}
.afs-main-product__short-description {
  margin-bottom: var(--afs-space-5);
  max-width: 52rem;
}

.afs-product-gallery__container{
   position: sticky;
  top: 10rem;
}
/* =========================================================
   AFS PRODUCT GALLERY
========================================================= */

.afs-product-gallery-wrapper {
  width: 100%;
  min-width: 0;
}

.afs-product-gallery {
  position: sticky;
  top: 10rem;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--afs-space-3);

  width: 100%;
  height: calc(100vh - 12rem);
  min-height: 60rem;
  max-height: 90rem;
}

/* Mobile gallery is hidden by default. */

.afs-product-gallery-mobile {
  display: none;
}

/* =========================================================
   Shared media boxes
========================================================= */

.afs-product-gallery__primary,
.afs-product-gallery__slider {
  position: relative;
  min-width: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--afs-radius-lg);
  background: var(--afs-color-blush);
  overflow: hidden;
}

/* =========================================================
   Fixed primary media
========================================================= */

.afs-product-gallery__primary {
  display: flex;
  align-items: center;
  justify-content: center;
}

.afs-product-gallery__primary-media,
.afs-product-gallery__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.afs-product-gallery__primary-media {
  object-fit: cover;
  object-position: center;
}

.afs-product-gallery__primary iframe,
.afs-product-gallery__primary video,
.afs-product-gallery__primary model-viewer {
  display: block;
  width: 100%;
  height: 100%;
}

/* =========================================================
   Slider
========================================================= */

.afs-product-gallery__slider {
  isolation: isolate;
  touch-action: pan-y;
}

.afs-product-gallery__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.afs-product-gallery__track {
  display: flex;

  width: 100%;
  height: 100%;

  transform: translate3d(0, 0, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.afs-product-gallery__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  background-color:white;
  overflow: hidden;
  padding:20px;
}

.afs-product-gallery__media {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius:20px;
}

.afs-product-gallery__slide iframe,
.afs-product-gallery__slide video,
.afs-product-gallery__slide model-viewer {
  display: block;
  width: 100%;
  height: 100%;
}

/* =========================================================
   Slider navigation
========================================================= */

.afs-product-gallery__arrow {
  position: absolute;
  z-index: 3;
  bottom: 2.2rem;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 4rem;
  height: 4rem;
  padding: 0;

  border: 0;
  border-radius: 50%;

  color: #000000;
  background: rgba(255, 255, 255, 0.72);

  cursor: pointer;

  -webkit-box-shadow: 1px 2px 15px -5px #bdbdbd;
  box-shadow: 1px 2px 15px -5px #bdbdbd;

  transition:
    background-color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.afs-product-gallery__arrow:hover {
  background: rgba(255, 255, 255, 0.94);
}

.afs-product-gallery__arrow:active {
  transform: scale(0.92);
}

.afs-product-gallery__arrow:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.afs-product-gallery__arrow svg {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
}

.afs-product-gallery__arrow--prev {
  left: 1.2rem;
}

.afs-product-gallery__arrow--next {
  right: 1.2rem;
}

/* =========================================================
   Pagination
========================================================= */

.afs-product-gallery__pagination {
  position: absolute;
  z-index: 3;
  bottom: 3.65rem;
  left: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;

  transform: translateX(-50%);
}

.afs-product-gallery__dot {
  width: 0.6rem;
  height: 0.6rem;
  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.32);

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.afs-product-gallery__dot:hover {
  background: rgba(0, 0, 0, 0.65);
}

.afs-product-gallery__dot.is-active {
  background: rgba(0, 0, 0, 1);
  transform: scale(1.2);
}

.afs-product-gallery__dot:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* =========================================================
   Tablet
========================================================= */

@media screen and (max-width: 989px) {
  .afs-product-gallery {
    position: static;
    top: auto;

    height: auto;
    min-height: 0;
    max-height: none;
  }

  .afs-product-gallery__primary,
  .afs-product-gallery__slider {
    height: auto;
    aspect-ratio: 0.84 / 1;
  }

  .afs-product-gallery__container {
    position: static;
  }
}

/* =========================================================
   Mobile
========================================================= */

@media screen and (max-width: 749px) {
  /*
   * Hide the desktop two-box gallery.
   */

  .afs-product-gallery--desktop {
    display: none;
  }

  /*
   * Display one unified mobile slider.
   */

  .afs-product-gallery-mobile {
    display: block;
    width: 100%;
  }

  .afs-product-gallery-mobile .afs-product-gallery__slider {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 0.84 / 1;
    border-radius: none!important;
    background: var(--afs-color-blush);
    overflow: hidden;
    isolation: isolate;
  }

    .afs-product-gallery-mobile .afs-product-gallery__slider img {
 border-radius: none!important;
 
  }

  .afs-product-gallery-mobile .afs-product-gallery__viewport,
  .afs-product-gallery-mobile .afs-product-gallery__track,
  .afs-product-gallery-mobile .afs-product-gallery__slide {
    height: 100%;
  }

  .afs-product-gallery-mobile .afs-product-gallery__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
     border-radius: 0!important;
  }

  .afs-product-gallery-mobile .afs-product-gallery__arrow {
    bottom: 1.2rem;
    width: 3.8rem;
    height: 3.8rem;
  }

  .afs-product-gallery-mobile
    .afs-product-gallery__arrow--prev {
    left: 0.8rem;
  }

  .afs-product-gallery-mobile
    .afs-product-gallery__arrow--next {
    right: 0.8rem;
  }

  .afs-product-gallery-mobile
    .afs-product-gallery__pagination {
    bottom: 2.65rem;
  }
}

/* =========================================================
   Reduced motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .afs-product-gallery__track,
  .afs-product-gallery__arrow,
  .afs-product-gallery__dot {
    transition: none;
  }
}


/* =========================================================
   AFS PRODUCT BUY BOX
========================================================= */

.afs-product-buy-box {
  margin-bottom: var(--afs-space-5);
}

.add-to-cart-shit{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:center;
}

/* =========================================================
   Variant selectors
========================================================= */

.afs-product-buy-box__variants {
  margin-bottom: var(--afs-space-3);
}

.afs-product-buy-box__variant + .afs-product-buy-box__variant {
  margin-top: var(--afs-space-3);
}

.afs-product-buy-box__label {
  display: block;

  margin-bottom: 0.8rem;

  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.afs-product-buy-box__select-wrap {
  position: relative;

  width: 15rem;
  max-width: 100%;
}

.afs-product-buy-box__select {
  width: 100%;
  min-height: 4.6rem;

  padding: 1.2rem 4.4rem 1.2rem 1.2rem;

  border: 1px solid var(--afs-color-border);
  border-radius: var(--afs-radius-sm);

  appearance: none;
  -webkit-appearance: none;

  background: transparent;
  color: var(--afs-text-primary);

  font: inherit;
  cursor: pointer;
}

.afs-product-buy-box__select:focus-visible {
  outline: 1px solid var(--afs-text-primary);
  outline-offset: 2px;
}

.afs-product-buy-box__select-icon {
  position: absolute;
  top: 50%;
  right: 1.6rem;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 1.8rem;
  height: 1.8rem;

  transform: translateY(-50%);
  pointer-events: none;
}

.afs-product-buy-box__select-icon svg {
  display: block;

  width: 1.8rem;
  height: 1.8rem;
}

/* =========================================================
   Subscription widget
========================================================= */

.afs-product-buy-box__subscriptions {
  width: 100%;
}

.afs-product-buy-box__subscriptions:empty {
  display: none;
}

/* =========================================================
   Buy row
========================================================= */

.afs-product-buy-box__row {
  display: flex;
  align-items: stretch;
  gap: 1.2rem;

  width: 100%;
}

/* =========================================================
   Quantity
========================================================= */

.afs-product-buy-box__quantity {
  flex: 0 0 12rem;
  border: 1px solid var(--afs-color-dark);
  border-radius: 1.2rem;

  overflow: hidden;
}

.afs-product-buy-box__quantity.quantity {
  min-height: 5.2rem;
}

.afs-product-buy-box__quantity .quantity__button,
.afs-product-buy-box__quantity .quantity__input {
  min-height: 5rem;
}

.afs-product-buy-box__quantity .quantity__button {
  color: var(--afs-text-primary);
}

.afs-product-buy-box__quantity .quantity__input {
  color: var(--afs-text-primary);
}

.quantity::before,
.quantity::after {
  box-shadow: none !important;
}

/* =========================================================
   Buy button
========================================================= */

.afs-product-buy-box__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex: 1;

  min-width: 0;
  min-height: 5.2rem;

  padding: 0.8rem 2rem;

  border: 0;
  border-radius: 999px;

  background: var(--afs-color-yellow);
  color: var(--afs-text-primary);

  font-family: var(--afs-font-body);
  font-weight: 600;

  cursor: pointer;

  transition:
    background-color var(--afs-transition-fast),
    transform var(--afs-transition-fast),
    opacity var(--afs-transition-fast);
}

.afs-product-buy-box__button:hover:not(:disabled) {
  background: var(
    --afs-color-yellow-hover,
    var(--afs-color-yellow)
  );
}

.afs-product-buy-box__button:active:not(:disabled) {
  transform: scale(0.98);
}

.afs-product-buy-box__button:focus-visible {
  outline: 1px solid var(--afs-text-primary);
  outline-offset: 2px;
}

.afs-product-buy-box__button:disabled {
  justify-content: center;

  opacity: 0.45;
  cursor: not-allowed;
}

/* =========================================================
   Cart icon
========================================================= */

.afs-product-buy-box__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 3rem;
  height: 3rem;

  color: currentColor;
}

.afs-product-buy-box__button-icon svg {
  display: block;
  width: 3rem;
  height: 3rem;
}

.afs-product-buy-box__button-icon
  svg [stroke]:not([stroke="none"]) {
  stroke: currentColor;
}

.afs-product-buy-box__button-icon
  svg [fill]:not([fill="none"]) {
  fill: currentColor;
}

/* =========================================================
   Button prices
========================================================= */

.afs-product-buy-box__button-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.7rem;
  min-width: 0;
  margin-left: auto;
  white-space: nowrap;
}

.afs-product-buy-box__button-price {
  color: inherit;

  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.afs-product-buy-box__button-compare-price {
  color: #b35012ff;

  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.55;
  text-decoration-line: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

/* =========================================================
   Sold out
========================================================= */

.afs-product-buy-box__button-sold-out {
  width: 100%;

  color: inherit;

  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

/* =========================================================
   Hidden states
========================================================= */

.afs-product-buy-box__button-icon[hidden],
.afs-product-buy-box__button-pricing[hidden],
.afs-product-buy-box__button-compare-price[hidden],
.afs-product-buy-box__button-sold-out[hidden] {
  display: none !important;
}

/* =========================================================
   Mobile
========================================================= */

@media screen and (max-width: 749px) {
  .afs-product-buy-box__row {
    gap: 0.8rem;
  }

  .afs-product-buy-box__quantity {
    flex-basis: 13rem;
  }

  .afs-product-buy-box__button {
    min-height: 4.8rem;

    padding: 0.7rem 1.4rem;
  }

  .afs-product-buy-box__button-icon {
    width: 3rem;
    height:3rem;
  }

  .afs-product-buy-box__button-icon svg {
    width: 3rem;
    height: 3rem;
  }

  .afs-product-buy-box__button-pricing {
    gap: 0.5rem;
  }

  .afs-product-buy-box__button-price {
    font-size: 1.35rem;
  }

  .afs-product-buy-box__button-compare-price {
    font-size: 1.2rem;
  }
}

/* =========================================================
   Very small screens
========================================================= */

@media screen and (max-width: 374px) {
  .afs-product-buy-box__quantity {
    flex-basis: 9rem;
  }

  .afs-product-buy-box__button {
    padding-inline: 1rem;
  }

  .afs-product-buy-box__button-pricing {
    gap: 0.35rem;
  }

  .afs-product-buy-box__button-price {
    font-size: 1.3rem;
  }

  .afs-product-buy-box__button-compare-price {
    font-size: 1rem;
  }
}

/* =========================================================
   AFS MAIN PRODUCT — APP BLOCKS
========================================================= */

.afs-main-product__app-block {
  margin-bottom: var(--afs-space-4);
}

.afs-main-product__app-block [class*="seal"],
.afs-main-product__app-block [id*="seal"] {
  font-family: var(--afs-font-body);
  color: var(--afs-text-primary);
}

.afs-main-product__app-block input[type="radio"],
.afs-main-product__app-block input[type="checkbox"] {
  accent-color: var(--afs-text-primary);
}

/* Accordion */

.afs-main-product__accordion {
  border-top: 1px solid var(--afs-color-border);
  margin-bottom: var(--afs-space-5);
}

.afs-product-accordion-item {
  border-bottom: 1px solid var(--afs-color-border);
}

.afs-product-accordion-item__summary {
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;

  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
}

.afs-product-accordion-item__summary::-webkit-details-marker {
  display: none;
}

.afs-product-accordion-item[open] .afs-product-accordion-item__icon {
  transform: rotate(45deg);
}

.afs-product-accordion-item__icon {
  transition: transform 180ms ease;
}

.afs-product-accordion-item__content {
  padding-bottom: var(--afs-space-4);
}

/* Video slider */

.afs-product-video-slider {
  margin-bottom: var(--afs-space-5);
}

.afs-product-video-slider__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.afs-product-video-slider__track::-webkit-scrollbar {
  display: none;
}

.afs-product-video-slider__item {
  flex: 0 0 25%;
  scroll-snap-align: start;
  border-radius: var(--afs-radius-md);
  overflow: hidden;
  background: var(--afs-color-blush);
  border:1px solid var(--afs-text-accent);
}


/* Product video card */

.afs-product-video-card {
  width: 100%;
}

.afs-product-video-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.afs-product-video-card__image,
.afs-product-video-card__video {
  display: block;
  width: 100%;
  aspect-ratio: 1 /1.5;
  object-fit: cover;
  border-radius: var(--afs-radius-sm);
}

/* Centered play button */

.afs-product-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--afs-color-dark);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.14);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.afs-product-video-card__play svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  max-width: 1.5rem;
  max-height: 1.5rem;

  fill: currentColor;
  stroke: currentColor;
}

/* Slight visual correction for triangular play icons */

.afs-product-video-card__play svg {
  transform: translateX(0.1rem);
}

.afs-product-video-card__media:hover .afs-product-video-card__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: #fff;
}


/* =========================================================
   AFS PRODUCT — PAIRS WELL WITH
========================================================= */

.afs-product-pairs-well {
  margin-bottom: var(--afs-space-5);
  overflow: hidden;
  border-radius:6px;
}

.afs-product-pairs-well__header {
  margin-bottom: var(--afs-space-3);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--afs-space-3);
}

.afs-product-pairs-well__header .afs-eyebrow {
  margin: 0;
}

.afs-product-pairs-well__track {
  display: flex;
  gap: 1.2rem;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  scrollbar-width: none;
}

.afs-product-pairs-well__track::-webkit-scrollbar {
  display: none;
}

.afs-product-pairs-well__item {
  flex: 0 0 calc(
    (100% - (1.2rem * (var(--afs-slides-desktop) - 1))) / var(--afs-slides-desktop)
  );

  min-width: 200px;
  scroll-snap-align: start;
}

@media screen and (max-width: 989px) {
  .afs-product-pairs-well__item {
    flex-basis: calc(
      (100% - (1.2rem * (var(--afs-slides-tablet) - 1))) / var(--afs-slides-tablet)
    );
  }
}

@media screen and (max-width: 749px) {
  .afs-product-pairs-well__item {
   flex: 0 0 calc(
    (100% - (1.2rem * (var(--afs-slides-desktop) - 1))) / var(--afs-slides-desktop)
  );

      min-width: 180px;
  scroll-snap-align: start;
  }
}

/* =========================================================
   AFS PRODUCT STICKY BAR
========================================================= */

.afs-product-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1.8rem;
  z-index: 40;
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.afs-product-sticky-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.afs-product-sticky-bar__inner {
  min-height: 8.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--afs-space-4);
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--afs-color-border);
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
}

.afs-product-sticky-bar__product {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.afs-product-sticky-bar__image {
  width: 7.2rem;
  height: 7.2rem;
  flex: 0 0 7.2rem;
  object-fit: cover;
  background: var(--afs-color-white);
}

.afs-product-sticky-bar__meta {
  min-width: 0;
}

.afs-product-sticky-bar__title {
  margin: 0;

  font-family: var(--afs-font-body);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;

  color: var(--afs-text-primary);
}

.afs-product-sticky-bar__button {
  flex: 0 0 28rem;
  min-height: 5.2rem;

  padding: 0 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;

  border: 0;
  border-radius: 1.2rem;

  background: var(--afs-color-yellow);
  color: var(--afs-text-primary);

  font-family: var(--afs-font-body);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;

  cursor: pointer;
}

.afs-product-sticky-bar__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media screen and (max-width: 749px) {
  .afs-product-sticky-bar {
    bottom: 1rem;
  }

  .afs-product-sticky-bar__inner {
    min-height: auto;
    padding: 1rem;
    border-radius: 1.6rem;
  }

  .afs-product-sticky-bar__image {
    width: 5.4rem;
    height: 5.4rem;
    flex-basis: 5.4rem;
  }

  .afs-product-sticky-bar__title {
    font-size: 1.2rem;
  }

  .afs-product-sticky-bar__button {
    flex: 0 0 16rem;
    min-height: 4.8rem;
    padding: 0 1.4rem;
  }
}

/* =========================================================
   AFS MAIN COLLECTION
========================================================= */

.afs-main-collection__hero {
  padding: var(--afs-space-7) 0 var(--afs-space-6);

  border-bottom: 1px solid var(--afs-color-border);
  overflow: hidden;
}

.afs-main-collection__title {
  margin: 0 0 var(--afs-space-6);

  color: var(--afs-text-primary);

  font-family: var(--afs-font-body);
  font-size: clamp(4rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

/* =========================================================
   Collection tabs
========================================================= */

.afs-main-collection__tabs-shell {
  width: 100%;
  min-width: 0;
}

.afs-main-collection__tabs {
  display: flex;
  align-items: flex-start;
  gap: clamp(3.2rem, 4vw, 4rem);
  width: 100%;
  overflow-x: auto;
  overflow-y:hidden!important;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.afs-main-collection__tabs::-webkit-scrollbar {
  display: none;
}

.afs-main-collection__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;

  min-width: 9rem;

  color: var(--afs-text-primary);
  text-decoration: none;

  scroll-snap-align: start;
}

.afs-main-collection__tab-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 9.6rem;
  height: 9.6rem;

  border: 1px solid transparent;
  border-radius: 50%;

  background: var(--afs-color-blush);
  overflow: hidden;

  transition:
    border-color var(--afs-transition-fast),
    opacity var(--afs-transition-fast);
}

.afs-main-collection__tab.is-active
  .afs-main-collection__tab-image-wrap {
  border: solid 2px var(--afs-color-yellow);
  
}

.afs-main-collection__tab-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.afs-main-collection__tab-title {
  font-family: var(--afs-font-body);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

/*
 * Hidden on desktop and tablet.
 * It becomes the divider and slider indicator on mobile.
 */

.afs-main-collection__tabs-progress {
  display: none;
}

/* =========================================================
   Collection body
========================================================= */

.afs-main-collection__body {
  padding: var(--afs-space-5) 0 var(--afs-space-7);
}

/* =========================================================
   Toolbar
========================================================= */

.afs-main-collection__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--afs-space-4);

  margin-bottom: var(--afs-space-5);
}

.afs-main-collection__count {
  margin: 0;

  color: var(--afs-text-primary);

  font-size: 1.6rem;
  font-weight: 500;
}

.afs-main-collection__controls {
  display: flex;
  align-items: center;
  gap: var(--afs-space-3);
}

.afs-main-collection__grid-toggle {
  display: flex;
  gap: 0.4rem;
}

.afs-main-collection__grid-toggle button {
  width: 3.4rem;
  height: 3.4rem;

  border: 1px solid var(--afs-color-border);
  border-radius: 999px;

  background: transparent;
  color: var(--afs-text-primary);

  font-size: 1.2rem;
  cursor: pointer;
}

.afs-main-collection__grid-toggle button.is-active {
  border-color: var(--afs-text-primary);

  background: var(--afs-text-primary);
  color: var(--afs-color-white);
}

.afs-main-collection__sort {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.afs-main-collection__sort label {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.afs-main-collection__sort select {
  height: 3.8rem;
  padding: 0 1rem;

  border: 1px solid var(--afs-color-border);

  background: var(--afs-color-white);
  color: var(--afs-text-primary);
}

/* =========================================================
   Product grid
========================================================= */

.afs-main-collection__grid {
  display: grid;
  gap: var(--afs-space-4);
}

.afs-main-collection__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.afs-main-collection__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.afs-main-collection__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.afs-main-collection__item {
  min-width: 0;
}

.afs-main-collection__empty {
  grid-column: 1 / -1;

  width: 100%;
  margin: 0;

  text-align: center;
}

.afs-main-collection__pagination {
  margin-top: var(--afs-space-6);

  text-align: center;
}

/* =========================================================
   Tablet
========================================================= */

@media screen and (max-width: 989px) {
  .afs-main-collection__hero {
    padding-top: var(--afs-space-6);
  }

  .afs-main-collection__grid--4,
  .afs-main-collection__grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   Mobile
========================================================= */

@media screen and (max-width: 749px) {
  /*
   * The progress tracker replaces the standard divider.
   */

  .afs-main-collection__hero {
    padding-bottom: var(--afs-space-4);
    border-bottom: 0;
  }

  .afs-main-collection__title {
    margin-bottom: var(--afs-space-5);
  }

  /* Mobile tabs */

  .afs-main-collection__tabs-shell {
    position: relative;

    width: 100%;
  }

  .afs-main-collection__tabs {
    align-items: flex-start;
    gap: 2.4rem;

    width: 100%;
    padding-bottom: 1.8rem;

    overflow-x: auto;
    overscroll-behavior-inline: contain;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .afs-main-collection__tabs::-webkit-scrollbar {
    display: none;
  }

  .afs-main-collection__tab {
    flex: 0 0 8.8rem;

    width: 8.8rem;
    min-width: 8.8rem;

    scroll-snap-align: start;
  }

  .afs-main-collection__tab-image-wrap {
    width: 7.6rem;
    height: 7.6rem;
  }

  .afs-main-collection__tab-title {
    font-size: 1.3rem;
  }

  /* Mobile scroll progress */

  .afs-main-collection__tabs-progress {
    position: relative;

    display: block;

    width: 100%;
    height: 0.3rem;

    border-radius: 999px;

    background: rgba(11, 11, 11, 0.14);
    overflow: hidden;

    transition: opacity 0.25s ease;
  }

  .afs-main-collection__tabs-progress.is-static {
    opacity: 0;
  }

  .afs-main-collection__tabs-progress-thumb {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 30%;
    height: 100%;

    border-radius: inherit;

    background: var(--afs-text-primary);

    transform: translate3d(0, 0, 0);

    transition:
      width 0.2s ease,
      transform 0.08s linear;

    will-change: width, transform;
  }

  /*
   * Hide product count, Filter & Sort and 3/4 controls.
   */

  .afs-main-collection__toolbar {
    display: none !important;
  }

  .afs-main-collection__body {
    padding-top: var(--afs-space-4);
  }

  /* Mobile product grid */

  .afs-main-collection__grid,
  .afs-main-collection__grid--2,
  .afs-main-collection__grid--3,
  .afs-main-collection__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--afs-space-3);
  }
}

/* =========================================================
   FILTER DRAWER
========================================================= */

.afs-filter-trigger {
  width: auto;

  border-radius: 6px;

  background-color: var(--afs-color-dark);
  color: #ffffff;

  font-family: var(--afs-font-body);
  text-wrap: nowrap;
}

.afs-filter-trigger svg {
  width: 24px;
}

.afs-overflow-hidden {
  overflow: hidden;
}

.afs-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;

  visibility: hidden;
  pointer-events: none;
}

.afs-filter-drawer.is-visible {
  visibility: visible;
  pointer-events: auto;
}

.afs-filter-drawer__overlay {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;

  background: rgba(0, 0, 0, 0.18);
  opacity: 0;

  cursor: pointer;

  transition: opacity 0.35s ease;
}

.afs-filter-drawer.is-open
  .afs-filter-drawer__overlay {
  opacity: 1;
}

.afs-filter-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;

  display: flex;
  flex-direction: column;

  width: 560px;
  max-width: 100%;
  height: 100%;

  background: #f8f1eb;
  color: #000000;

  transform: translateX(100%);

  transition:
    transform 0.42s
    cubic-bezier(0.16, 1, 0.3, 1);

  will-change: transform;
}

.afs-filter-drawer.is-open
  .afs-filter-drawer__panel {
  transform: translateX(0);
}

.afs-filter-drawer__header {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 76px;

  height: 76px;

  border-bottom: 1px solid #ded6cf;
}

.afs-filter-drawer__header h3 {
  margin: 0;

  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.afs-filter-drawer__close {
  position: absolute;
  top: 50%;
  left: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 31px;
  height: 31px;

  border: 0;
  border-radius: 999px;

  background: #e8e1dc;
  color: #000000;

  font-size: 24px;
  line-height: 1;

  cursor: pointer;
  transform: translateY(-50%);
}

.afs-filter-drawer__form {
  display: flex;
  flex-direction: column;

  height: calc(100% - 76px);
}

.afs-filter-drawer__body {
  flex: 1;

  padding: 30px 33px 40px;

  overflow-y: auto;
}

.afs-filter-group {
  margin: 0;
  padding: 0 0 28px;

  border-bottom: 1px solid #ded6cf;
}

.afs-filter-group + .afs-filter-group {
  padding-top: 24px;
}

.afs-price-slider {
  position: relative;

  height: 24px;
  margin: 12px 0 22px;
}

.afs-price-slider__track,
.afs-price-slider__range {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;

  height: 2px;

  transform: translateY(-50%);
}

.afs-price-slider__track {
  background: #d8d0c9;
}

.afs-price-slider__range {
  background: #000000;
}

.afs-price-slider__input {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 24px;
  margin: 0;

  appearance: none;
  background: none;

  pointer-events: none;
}

.afs-price-slider__input::-webkit-slider-thumb {
  width: 11px;
  height: 11px;

  border: 2px solid #000000;
  border-radius: 50%;

  appearance: none;
  background: #f8f1eb;

  cursor: pointer;
  pointer-events: auto;
}

.afs-price-slider__input::-moz-range-thumb {
  width: 11px;
  height: 11px;

  border: 2px solid #000000;
  border-radius: 50%;

  background: #f8f1eb;

  cursor: pointer;
  pointer-events: auto;
}

.afs-price-slider__input::-webkit-slider-runnable-track {
  background: transparent;
}

.afs-price-slider__input::-moz-range-track {
  background: transparent;
}

.afs-filter-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #000000;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;

  list-style: none;
  cursor: pointer;
}

.afs-filter-group summary::-webkit-details-marker {
  display: none;
}

.afs-filter-group__icon {
  font-size: 20px;
  line-height: 1;

  transform: rotate(0deg);

  transition: transform 0.2s ease;
}

.afs-filter-group:not([open])
  .afs-filter-group__icon {
  transform: rotate(180deg);
}

.afs-filter-group__content {
  display: grid;
  gap: 12px;

  margin-top: 22px;
}

.afs-filter-radio {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #000000;

  font-size: 16px;
  line-height: 1.15;

  cursor: pointer;
}

.afs-filter-radio input {
  display: inline-grid;
  place-content: center;

  width: 11px;
  height: 11px;
  margin: 0;

  border: 1px solid #aaa39d;
  border-radius: 999px;

  appearance: none;
  background: transparent;
}

.afs-filter-radio input:checked {
  border-color: #000000;
  background: #000000;
}

.afs-filter-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 22px 0;

  border-bottom: 1px solid var(--afs-color-border);
}

.afs-filter-toggle-row span:first-child {
  color: var(--afs-text-primary);

  font-size: 1.7rem;
}

.afs-filter-switch {
  position: relative;

  display: block;

  width: 38px;
  height: 22px;

  cursor: pointer;
}

.afs-filter-switch input {
  position: absolute;

  opacity: 0;
  pointer-events: none;
}

.afs-filter-switch__track {
  position: absolute;
  inset: 0;

  border-radius: 999px;

  background: #d9d3ce;

  transition: background 0.25s ease;
}

.afs-filter-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;

  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.25s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.afs-filter-switch input:checked
  + .afs-filter-switch__track {
  background: #000000;
}

.afs-filter-switch input:checked
  + .afs-filter-switch__track
  .afs-filter-switch__thumb {
  transform: translateX(16px);
}

.afs-filter-group--price {
  padding-top: 24px;

  border-bottom: 0;
}

.afs-price-range-line {
  position: relative;

  height: 2px;
  margin: 14px 15px 23px;

  background: #000000;
}

.afs-price-range-line::before,
.afs-price-range-line::after {
  content: "";

  position: absolute;
  top: 50%;

  width: 11px;
  height: 11px;

  border: 2px solid #000000;
  border-radius: 50%;

  background: #f8f1eb;

  transform: translateY(-50%);
}

.afs-price-range-line::before {
  left: -2px;
}

.afs-price-range-line::after {
  right: -2px;
}

.afs-price-filter {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.afs-price-filter label {
  display: flex;
  align-items: center;
  gap: 10px;

  height: 43px;
  padding: 0 17px;

  border: 1px solid #ded6cf;
  border-radius: 10px;

  background: transparent;
}

.afs-price-filter label span {
  color: #867970;

  font-size: 16px;
}

.afs-price-filter strong {
  color: #000000;

  font-size: 17px;
  font-weight: 500;
}

.afs-price-filter input {
  width: 100%;
  min-width: 0;

  border: 0;

  background: transparent;
  box-shadow: none;
  color: #867970;

  font: inherit;
  font-size: 14px;
  text-align: right;
}

.afs-price-filter input:focus {
  outline: none;
}

.afs-filter-drawer__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  flex: 0 0 auto;

  min-height: 112px;
  padding: 35px 33px 31px;

  border-top: 1px solid #ded6cf;

  background: #f8f1eb;
}

.afs-filter-drawer__clear,
.afs-filter-drawer__apply {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 52px;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.afs-filter-drawer__clear {
  border: 1px solid #000000;

  background: transparent;
  color: #000000;
}

.afs-filter-drawer__apply {
  border: 1px solid #000000;

  background: #000000;
  color: #ffffff;
}

/* =========================================================
   Filter drawer mobile
========================================================= */

@media screen and (max-width: 749px) {
  .afs-filter-drawer__panel {
    width: 100%;
  }

  .afs-filter-drawer__body {
    padding: 30px 33px 40px;
  }

  .afs-price-filter {
    gap: 24px;
  }

  .afs-filter-drawer__footer {
    gap: 22px;

    padding: 35px 33px 31px;
  }
}

/* =========================================================
   Reduced motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .afs-main-collection__tabs {
    scroll-behavior: auto;
  }

  .afs-main-collection__tabs-progress-thumb,
  .afs-main-collection__tab-image-wrap,
  .afs-filter-drawer__overlay,
  .afs-filter-drawer__panel {
    transition: none;
  }
}

/* =========================================================
   AFS COMPARISON GALLERY
========================================================= */

.afs-comparison-gallery__header {
  margin-bottom: var(--afs-space-4);
}

.afs-comparison-gallery__filters {
  margin-bottom: var(--afs-space-5);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.afs-comparison-gallery__filters::-webkit-scrollbar {
  display: none;
}

.afs-comparison-gallery__filter {
  flex: 0 0 auto;
  min-height: 3.6rem;
  padding: 0 2rem;
  border: 1px solid var(--afs-color-border);
  border-radius:1rem;
  background: transparent;
  color: var(--afs-text-primary);
  font-family: var(--afs-font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.afs-comparison-gallery__filter.is-active {
  background: var(--afs-text-primary);
  border-color: var(--afs-text-primary);
  color: var(--afs-color-white);
}

.afs-comparison-gallery__grid {
  display: grid;
  grid-template-columns: repeat(var(--afs-comparison-columns-desktop), minmax(0, 1fr));
  gap: var(--afs-space-5) var(--afs-space-4);
}

.afs-comparison-gallery__item.is-hidden {
  display: none;
}
.afs-comparison-gallery__filters {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.afs-comparison-gallery__filter {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.afs-comparison-gallery__filters::-webkit-scrollbar {
  display: none;
}

.afs-comparison-gallery__item.is-hidden,
.afs-comparison-gallery__item[hidden] {
  display: none !important;
}

@media screen and (max-width: 989px) {
  .afs-comparison-gallery__grid {
    grid-template-columns: repeat(var(--afs-comparison-columns-tablet), minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  .afs-comparison-gallery__grid {
    grid-template-columns: repeat(var(--afs-comparison-columns-mobile), minmax(0, 1fr));
    gap:0.8rem;
  }

}

/* =========================================================
   Bottom CTA
========================================================= */

.afs-comparison-gallery__cta {

    margin-top: var(--afs-space-10);

    text-align:center;

}

.afs-comparison-gallery__cta .afs-btn{

    min-width:42rem;
    justify-content:center;
    gap:1.6rem;

}

.afs-comparison-gallery__cta .afs-btn svg{

    width:1.8rem;
    height:1.8rem;

}

.afs-comparison-gallery__cta .afs-eyebrow{

    opacity:.7;

}

@media screen and (max-width:749px){

    .afs-comparison-gallery__cta .afs-btn{

        width:100%;
        min-width:0;

    }

}

/* =========================================================
   AFS BUNDLE OFFER
========================================================= */

.afs-bundle-offer__card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(32rem, 0.8fr);
  gap: var(--afs-space-6);
  align-items: center;

  padding: var(--afs-space-6);
  border: 1px solid var(--afs-color-border);
  border-radius: var(--afs-radius-lg);
  background: var(--afs-color-ivory);
}

.afs-bundle-offer__heading {
  max-width: 68rem;
}

.afs-bundle-offer__benefits {
  display: grid;
  gap: 1.2rem;
}

.afs-bundle-offer__benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;

  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--afs-text-primary);
}

.afs-bundle-offer__check {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--afs-text-primary);
  color: var(--afs-color-white);
  font-size: 1rem;
  flex: 0 0 2.2rem;
}

.afs-bundle-offer__summary {
  padding: var(--afs-space-5);
  border-radius: var(--afs-radius-lg);
  background: var(--afs-color-white);
}

.afs-bundle-offer__products {
  display: flex;
  margin-bottom: var(--afs-space-4);
}

.afs-bundle-offer__product {
  width: 6.4rem;
  height: 6.4rem;

  border-radius: 50%;
  border: 2px solid var(--afs-color-white);
  overflow: hidden;
  background: var(--afs-color-blush);
}

.afs-bundle-offer__product + .afs-bundle-offer__product {
  margin-left: -1.6rem;
}

.afs-bundle-offer__product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.afs-bundle-offer__prices {
  margin-bottom: var(--afs-space-4);
}

.afs-bundle-offer__compare {
  margin: 0 0 0.4rem;
  color: var(--afs-text-muted);
  text-decoration: line-through;
  font-size: 1.6rem;
}

.afs-bundle-offer__price {
  margin: 0;
  font-family: var(--afs-font-heading);
  font-size: clamp(3.2rem, 4vw, 4.4rem);
  line-height: 1;
  color: var(--afs-text-primary);
}

.afs-bundle-offer__savings {
  margin: 1rem 0 0;
  font-size: 1.4rem;
  color: var(--afs-text-secondary);
}

.afs-bundle-offer__button {
  width: 100%;
  justify-content: center;
}

.afs-bundle-offer__note {
  margin: var(--afs-space-3) 0 0;
  font-size: 1.2rem;
  color: var(--afs-text-muted);
  text-align: left;
}

@media screen and (max-width: 989px) {
  .afs-bundle-offer__card {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 749px) {
  .afs-bundle-offer__card {
    padding: var(--afs-space-4);
  }

  .afs-bundle-offer__summary {
    padding: var(--afs-space-4);
  }
}

/* =========================================================
   AFS FAQ Section
========================================================= */

.afs-faq {
  padding: 80px 0;
}

.afs-faq__sidebar {
  position: sticky;
  top: 120px;
}

.afs-faq__list {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.afs-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.afs-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.afs-faq__question::-webkit-details-marker {
  display: none;
}

.afs-faq__icon {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.afs-faq__item[open] .afs-faq__icon {
  transform: rotate(45deg);
}

.afs-faq__answer {
  padding: 0 0 24px;
  max-width: 720px;
}

.afs-faq__answer p:last-child {
  margin-bottom: 0;
}

.afs-faq__filters {
  margin-bottom: 32px;
}

.afs-faq__filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.afs-faq__filter {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: transparent;
  color: var(--afs-color-text);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.afs-faq__filter:hover,
.afs-faq__filter.is-active {
  background: #090909;
  border-color: #090909;
  color: #fff;
}

.afs-faq__item.is-hidden {
  display: none;
}

@media screen and (max-width: 749px) {
  .afs-faq__filter-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .afs-faq__filter-list::-webkit-scrollbar {
    display: none;
  }

  .afs-faq__filter {
    flex: 0 0 auto;
    padding: 13px 20px;
  }
}

.afs-faq__category-heading {
  padding: 32px 0 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--afs-color-muted);
}

.afs-faq__item.is-hidden,
.afs-faq__category-heading.is-hidden {
  display: none !important;
}

@media screen and (max-width: 989px) {
  .afs-faq {
    padding: 64px 0;
  }

  .afs-faq__sidebar {
    position: static;
  }
}

@media screen and (max-width: 749px) {
  .afs-faq {
    padding: 48px 0;
  }

  .afs-faq__question {
    padding: 20px 0;
    font-size: 16px;
  }
}

/* =========================================================
   AFS Contact Section
========================================================= */

.afs-contact-support {
  padding: 80px 0;
}

.afs-contact-support__header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.afs-contact-support__heading {
  margin: 0 0 20px;
  font-family: var(--afs-font-heading);
  font-size: clamp(40px, 5vw, 42px);
  line-height: 0.95;
  font-weight: 400;
  color: var(--afs-color-heading);
}

.afs-contact-support__description {
  max-width: 560px;
  margin: 0 auto;
}

.afs-contact-support__info-item {
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.afs-contact-support__info-title {
  font-family: var(--afs-font-heading);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.afs-contact-support__info-text {
  font-size: 14px;
}

.afs-contact-support__icon {
  color: var(--afs-color-accent);
  margin-bottom: 12px;
}

.afs-contact-support__form-wrap {
  padding: 48px 40px;
}

.afs-contact-support__form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.afs-contact-support__form input,
.afs-contact-support__form textarea {
  width: 100%;
  margin: 0 0 28px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  color: inherit;
  font: inherit;
  border-radius: 0;
  box-shadow: none;
}

.afs-contact-support__form input:focus,
.afs-contact-support__form textarea:focus {
  outline: none;
  border-bottom-color: currentColor;
}

.afs-contact-support__success {
  margin-bottom: 24px;
}

@media screen and (max-width: 749px) {
  .afs-contact-support {
    padding: 56px 0;
  }

  .afs-contact-support__header {
    text-align: left;
  }

  .afs-contact-support__form-wrap {
    padding: 32px 24px;
  }
}


/* =========================================================
   AFS 180-day guarantee Section
========================================================= */

.afs-guarantee {
  padding: 80px 0;
}

.afs-guarantee__hero {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.afs-guarantee__icon,
.afs-guarantee__timeline-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #7f8f65;
  border-radius: 999px;
  color: var(--afs-color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.afs-guarantee__icon svg,
.afs-guarantee__timeline-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill:#7f8f65;
}

.afs-guarantee__heading {
  margin: 0;
  font-family: var(--afs-font-heading);
  font-size: clamp(38px, 5vw, 42px);
  line-height: 1;
  font-weight: 400;
}

.afs-guarantee__subheading {
  margin: 10px 0 18px;
  font-family: var(--afs-font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--afs-color-accent);
}

.afs-guarantee__description {
  max-width: 620px;
  margin: 0 auto;
}

.afs-guarantee__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.afs-guarantee__cards {
  max-width: 760px;
  margin: 0 auto 56px;
  display: grid;
  gap: 24px;
}

.afs-guarantee__card,
.afs-guarantee__bottom-card {
  padding: 36px 42px;
  border: 1px solid var(--afs-color-ivory);
  text-align: center;
}

.afs-guarantee__card h2,
.afs-guarantee__bottom-card h2 {
  margin: 0 0 14px;
  font-family: var(--afs-font-heading);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
}

.afs-guarantee__timeline {
  max-width: 1120px;
  margin: 0 auto 56px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.afs-guarantee__timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.afs-guarantee__timeline-meta {
  text-align: left;
  color: var(--afs-color-accent);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:start;
  gap:15px;
}

.afs-guarantee__timeline-content {
  max-width: 820px;
}

.afs-guarantee__timeline-content h3 {
  margin: 0 0 14px;
  font-family: var(--afs-font-heading);
  font-size: clamp(24px, 3vw, 20px);
  line-height: 1.2;
  font-weight: 400;
}

.afs-guarantee__timeline-content ul {
  margin: 0;
  padding-left: 18px;
}

.afs-guarantee__bottom-card {
  max-width: 1120px;
  margin: 0 auto;
}

.afs-guarantee__bottom-text {
  max-width: 640px;
  margin: 0 auto;
}

@media screen and (max-width: 749px) {
  .afs-guarantee {
    padding: 56px 0;
  }

  .afs-guarantee__hero {
    text-align: left;
  }

  .afs-guarantee__actions {
    justify-content: flex-start;
  }

  .afs-guarantee__card,
  .afs-guarantee__bottom-card {
    padding: 28px 22px;
    text-align: left;
  }

  .afs-guarantee__timeline-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0;
  }

  .afs-guarantee__timeline-meta {
    text-align: left;
  }

  .afs-guarantee__timeline-icon {
    margin-left: 0;
  }
}


/* =========================================================
   AFS Press Section
========================================================= */

.afs-press-grid {
  padding: 80px 0;
}

.afs-press-grid__header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.afs-press-grid__heading {
  margin: 0;
  font-family: var(--afs-font-heading);
  font-size: clamp(40px, 5vw, 42px);
  line-height: 1;
  font-weight: 400;
}

.afs-featured-press__logo-image {
  display: block;
  max-width: 10rem;
  max-height: 5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
.afs-press-grid__heading em {
  color: var(--afs-color-accent);
  font-style: italic;
}

.afs-card-press {
  position: relative;
  min-height: 340px;
  padding: 48px 54px 42px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.afs-card-press::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  width: 1px;
  height: 40px;
  background: var(--afs-color-accent);
}

.afs-card-press__issue,
.afs-card-press__source {
  margin: 0;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(19, 43, 69, 0.55);
}

.afs-card-press__issue {
  margin-bottom: 28px;
}

.afs-card-press__title {
  margin: 0 0 24px;
  font-family: var(--afs-font-heading);
  font-size: clamp(28px, 3vw, 22px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--afs-color-navy);
}

.afs-card-press__source {
  margin-bottom: 36px;
}

.afs-card-press__quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--afs-font-heading);
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
  color: rgba(19, 43, 69, 0.78);
}

.afs-card-press__quote p {
  margin: 0;
}

.afs-card-press__quote-mark {
  color: var(--afs-color-accent);
  font-size: 44px;
  line-height: 1;
  opacity: 0.45;
}

.afs-card-press__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--afs-color-navy);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.afs-card-press__link span:first-child {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.afs-card-press__link-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(19, 43, 69, 0.3);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.afs-card-press__link:hover .afs-card-press__link-icon {
  transform: translate(2px, -2px);
  border-color: currentColor;
}

@media screen and (max-width: 749px) {
  .afs-press-grid {
    padding: 56px 0;
  }

  .afs-press-grid__header {
    margin-bottom: 36px;
  }

  .afs-card-press {
    min-height: auto;
    padding: 42px 28px 34px;
  }

  .afs-card-press::before {
    left: 28px;
  }

  .afs-card-press__quote {
    font-size: 17px;
    line-height: 1.6;
  }
}