/** Shopify CDN: Minification failed

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

**/
/* ==========================================================================
   FICKLE FRENCHY — Shopify Theme Stylesheet
   Replicating seek® design for French Bulldog Charity
   ========================================================================== */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-body-weight);
  color: var(--color-body-text);
  background-color: var(--color-background);
  line-height: 1.6;
  padding-top: 72px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-style: var(--font-heading-style);
  line-height: 1.15;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 8px 24px;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  transition: top .3s;
}

.skip-to-content:focus {
  top: 0;
}

/* ---------- UTILITY ---------- */
.page-width {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 749px) {
  .page-width {
    padding: 0 20px;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: none;
  border-radius: 40px;
  transition: all .3s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
}

.btn--accent:hover {
  opacity: .85;
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #fff;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 210px 16px 170px;
  width: 100%;
}

.site-header__logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: .02em;
  color: var(--color-primary);
  font-weight: 400;
}

.site-header__logo img {
  height: 40px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
  margin-top: 4px;
}

.site-header__nav a {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--color-body-text);
  position: relative;
  transition: color .3s;
}

.site-header__nav a:hover {
  color: var(--color-accent);
}

.site-header__nav-item {
  position: relative;
}

.site-header__nav-item>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header__nav-item>a svg {
  width: 10px;
  height: 10px;
  transition: transform .3s;
}

/* Hide dropdown arrow for Shop menu specifically */
.site-header__nav-item:has(a[href="/collections/all"]) > a svg {
  display: none;
}

/* Hide dropdown for Shop menu specifically */
.site-header__nav-item:has(a[href="/collections/all"]) .site-header__dropdown {
  display: none;
}

.site-header__nav-item:hover>a svg {
  transform: rotate(180deg);
}

.site-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 16px 0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  margin-top: 12px;
}

.site-header__nav-item:hover .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 4px;
}

.site-header__dropdown a {
  display: block;
  padding: 8px 24px;
  font-size: .8125rem;
  white-space: nowrap;
}

.site-header__dropdown a:hover {
  background: var(--color-secondary);
}

.site-header__icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__icon {
  width: 22px;
  height: 22px;
  color: var(--color-body-text);
  transition: color .3s;
  position: relative;
}

.site-header__icon:hover {
  color: var(--color-accent);
}

.site-header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

/* Mobile hamburger */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}

.site-header__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-body-text);
  transition: .3s;
}

@media (max-width: 999px) {
  .site-header__nav {
    display: none;
  }

  .site-header__hamburger {
    display: flex;
    flex: 0 0 auto;
    justify-content: flex-start;
    width: 24px;
    gap: 4px;
  }

  .site-header__hamburger span {
    height: 1.5px;
    width: 22px;
  }

  .site-header__inner {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header__logo {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    text-align: center;
  }

  .site-header__icons {
    gap: 10px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }

  .site-header__icon {
    width: 20px;
    height: 20px;
  }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .4s ease;
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--color-body-text);
}

.mobile-menu__nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__nav a {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: .04em;
}

/* ---------- SLIDESHOW / HERO ---------- */
.slideshow {
  position: relative;
  max-width: 1280px;
  margin: 24px auto 24px;
  width: calc(100% - 80px);
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 749px) {
  .slideshow {
    width: calc(100% - 32px);
    margin: 24px auto 24px;
    border-radius: 24px;
  }
}

.slideshow__slide {
  position: relative;
  display: none;
  min-height: 600px;
}

.slideshow__slide.is-active {
  display: block;
}

.slideshow__media {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.slideshow__media--mobile {
  display: none;
}

@media (max-width: 749px) {
  .slideshow__slide {
    min-height: 400px;
  }

  .slideshow__media {
    height: 400px;
  }

  .slideshow__slide .slideshow__media--desktop {
    display: none;
  }

  .slideshow__slide .slideshow__media--mobile {
    display: block;
  }

  /* If no mobile media exists, desktop stays visible via fallback */
  .slideshow__slide .slideshow__media--desktop:only-of-type {
    display: block;
  }
}

.slideshow__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, .45) 0%, transparent 60%);
}

.slideshow__heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  margin-bottom: 12px;
}

.slideshow__subheading {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: .03em;
}

.slideshow__dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 20px 0 0;
}

.slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .2);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.slideshow__dot.is-active {
  width: 32px;
  border-radius: 6px;
  background: var(--color-primary);
}

/* ---------- FEATURED COLLECTION / PRODUCT GRID ---------- */
.featured-collection {
  padding: 24px 0 40px;
  text-align: center;
}

.featured-collection__heading {
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 16px;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

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

@media (max-width: 549px) {
  .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-grid .product-card {
    flex: 0 0 45%;
    scroll-snap-align: start;
  }

  .product-card__image-wrapper {
    aspect-ratio: 1 / 1;
    padding: 12px;
    min-height: unset;
  }

  .product-card__image-wrapper img {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
  }

  .product-card__info {
    padding: 10px 14px 14px;
  }

  .product-card__title {
    font-size: 0.85rem;
  }

  .product-card__price {
    font-size: 0.85rem;
    margin-top: 4px;
  }
}

.product-card {
  text-align: left;
  background: var(--color-secondary);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .3s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__image-wrapper {
  background: var(--color-secondary);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.product-card__image-wrapper img {
  max-height: 280px;
  object-fit: contain;
}

.product-card__image-wrapper img.product-card__image--primary {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 0.85s cubic-bezier(.4,0,.2,1), visibility 1.2s cubic-bezier(.4,0,.2,1);
}

.product-card__image-wrapper img.product-card__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale3d(1.08, 1.08, 1);
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 0.85s cubic-bezier(.4,0,.2,1), visibility 1.2s cubic-bezier(.4,0,.2,1);
}

.product-card:hover .product-card__image-wrapper img.product-card__image--hover {
  opacity: 1;
  visibility: visible;
  transform: scale3d(1, 1, 1);
}

.product-card__info {
  padding: 20px 24px 28px;
  background: var(--color-secondary);
}

.product-card__title {
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--color-body-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
}

.product-card__price {
  font-size: .875rem;
  font-weight: 600;
}

/* ---------- USP TICKER ---------- */
.usps-ticker {
  padding: 20px 0 60px;
  margin-bottom: 20px;
  overflow: hidden;
}

.usps-ticker__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.usps-ticker__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-body-text);
  white-space: nowrap;
}

.usps-ticker__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usps-ticker__icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* ---------- SPLIT SECTIONS (Story / Features) ---------- */
.split-section {
  max-width: 1280px;
  margin: 0 auto 100px;
  /* Increased margin between blocks */
  width: calc(100% - 80px);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

@media (max-width: 749px) {
  .split-section {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin: 0 auto 60px;
    border-radius: 24px;
  }
}

.split-section__image {
  overflow: hidden;
}

@media (max-width: 749px) {
  .split-section__image {
    aspect-ratio: 0.8;
    /* width / height = 0.8 -> height is larger than width */
    width: 100%;
  }
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  background: var(--color-secondary);
}

@media (max-width: 749px) {
  .split-section__content {
    padding: 40px 28px;
  }
}

.split-section__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 24px;
  line-height: 1.12;
}

.split-section__text {
  font-size: .9375rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, .75);
  margin-bottom: 8px;
}

.split-section__cta {
  margin-top: 28px;
}

/* Dark variant (reversed colors) */
.split-section--dark .split-section__content {
  background: var(--color-primary);
  color: #fff;
}

.split-section--dark .split-section__heading {
  color: #fff;
}

.split-section--dark .split-section__text {
  color: rgba(255, 255, 255, .75);
}

.split-section--dark .split-section__badge {
  color: rgba(255, 255, 255, .9);
  font-size: .875rem;
  margin-bottom: 12px;
}

/* Reversed layout (image right) */
.split-section--reversed {
  direction: rtl;
}

.split-section--reversed>* {
  direction: ltr;
}

/* ---------- MISSION BANNER ---------- */
.mission-banner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 100px;
  /* Increased margin */
  width: calc(100% - 80px);
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 749px) {
  .mission-banner {
    width: calc(100% - 32px);
    margin: 0 auto 60px;
    min-height: 300px;
    border-radius: 24px;
  }
}

.mission-banner__image {
  position: absolute;
  inset: 0;
}

.mission-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

.mission-banner__content {
  position: relative;
  z-index: 2;
  padding: 60px 64px;
  max-width: 600px;
}

@media (max-width: 749px) {
  .mission-banner__content {
    padding: 40px 28px;
  }
}

.mission-banner__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}

.mission-banner__text {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
}

/* ---------- FULL WIDTH FEATURE (Iced Coffee / large image) ---------- */
.full-width-feature {
  max-width: 1280px;
  margin: 0 auto 100px;
  width: calc(100% - 80px);
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 749px) {
  .full-width-feature {
    width: calc(100% - 32px);
    margin: 0 auto 60px;
    border-radius: 24px;
  }
}

.full-width-feature__image img,
.full-width-feature__image-tag {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media (max-width: 749px) {

  .full-width-feature__image img,
  .full-width-feature__image-tag {
    aspect-ratio: 0.8;
    height: auto;
  }
}

.full-width-feature__content {
  text-align: center;
  padding: 48px 40px;
}

.full-width-feature__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 12px;
}

.full-width-feature__text {
  font-size: .9375rem;
  color: rgba(26, 26, 26, .7);
  margin-bottom: 28px;
}

/* ---------- EXPERIENCE / IN PERSON SECTION ---------- */
.experience-section {
  text-align: center;
  padding: 0 0 60px;
}

.experience-section__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 12px;
}

.experience-section__text {
  font-size: .9375rem;
  color: rgba(26, 26, 26, .7);
  margin-bottom: 28px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-secondary);
  padding: 64px 0 32px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 749px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.site-footer__newsletter-heading {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.site-footer__newsletter-text {
  font-size: .875rem;
  color: rgba(26, 26, 26, .65);
  margin-bottom: 24px;
  line-height: 1.6;
}

.site-footer__newsletter-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 40px;
  background: #fff;
  padding: 4px;
  max-width: 380px;
}

.site-footer__newsletter-form input {
  flex: 1;
  border: none;
  background: none;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: .875rem;
  outline: none;
}

.site-footer__newsletter-form button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(0, 0, 0, .15);
  transition: .3s;
  flex-shrink: 0;
}

.site-footer__newsletter-form button:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.site-footer__newsletter-form button svg {
  width: 14px;
  height: 14px;
}

.site-footer__newsletter-disclaimer {
  font-size: .75rem;
  color: rgba(26, 26, 26, .5);
  margin-top: 12px;
}

.site-footer__newsletter-disclaimer a {
  text-decoration: underline;
}

.site-footer__col-heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links a {
  font-size: .875rem;
  color: rgba(26, 26, 26, .65);
  transition: color .3s;
}

.site-footer__links a:hover {
  color: var(--color-primary);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__social {
  display: flex;
  gap: 16px;
}

.site-footer__social a {
  width: 20px;
  height: 20px;
  color: var(--color-body-text);
  transition: color .3s;
}

.site-footer__social a:hover {
  color: var(--color-accent);
}

.site-footer__copyright {
  font-size: .8125rem;
  color: rgba(26, 26, 26, .5);
}

.site-footer__payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-footer__payment-icons svg,
.site-footer__payment-icons img {
  height: 24px;
  width: auto;
}

/* ---------- PRODUCT PAGE ---------- */
.product-page {
  padding: 20px 0 40px;
}

.product-page__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(350px, 420px);
  gap: 6vw;
  align-items: start;
}

@media (max-width: 999px) {
  .product-page__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.product-page__gallery {
  position: relative;
}

.product-page__gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 767px) {
  .product-page__gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.product-page__gallery-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-secondary, #f5f5f5);
  position: relative;
}

/* 1 full, 2 half squares, repeat */
.product-page__gallery-item:nth-child(3n + 1) {
  grid-column: 1 / -1;
  aspect-ratio: auto;
}

.product-page__gallery-item:nth-child(3n + 2),
.product-page__gallery-item:nth-child(3n + 3) {
  grid-column: span 1;
  aspect-ratio: 1 / 1;
}

.product-page__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* subtle transition for picture perfect UI */
  transition: transform .4s ease;
}

.product-page__gallery-item:hover .product-page__gallery-img {
  transform: scale(1.02);
}

.product-page__info {
  position: sticky;
  top: 100px;
}

.product-page__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.product-page__price {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-page__shipping-note {
  font-size: .8125rem;
  color: rgba(26, 26, 26, .5);
  margin-bottom: 20px;
}

.product-page__shipping-note a {
  text-decoration: underline;
}

.product-page__description {
  margin-bottom: 24px;
}

.product-page__description-bold {
  font-weight: 600;
  margin-bottom: 12px;
}

.product-page__description-text {
  font-size: .9375rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, .75);
}

/* Subscribe & Save Box */
.product-page__purchase-options {
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 12px;
  overflow: hidden;
}

.purchase-option {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  transition: background .2s;
}

.purchase-option:last-child {
  border-bottom: none;
}

.purchase-option:hover {
  background: rgba(0, 0, 0, .02);
}

.purchase-option.is-selected {
  background: rgba(143, 180, 201, .08);
}

.purchase-option__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .25);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.purchase-option.is-selected .purchase-option__radio {
  border-color: var(--color-accent);
}

.purchase-option.is-selected .purchase-option__radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.purchase-option__details {
  flex: 1;
}

.purchase-option__label {
  font-weight: 500;
  font-size: .9375rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.purchase-option__badge {
  background: var(--color-accent);
  color: #fff;
  font-size: .6875rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.purchase-option__price {
  font-size: .875rem;
  text-align: right;
  white-space: nowrap;
}

.purchase-option__price-original {
  text-decoration: line-through;
  color: rgba(26, 26, 26, .4);
  font-size: .8125rem;
}

.purchase-option__perks {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.purchase-option__perk {
  font-size: .8125rem;
  color: rgba(26, 26, 26, .6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.purchase-option__perk svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Delivery frequency */
/* Variant / Grind picker */
.product-page__grind {
  margin-bottom: 24px;
}

.product-page__grind-label {
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-page__grind-options {
  display: flex;
  gap: 8px;
}

.grind-option {
  flex: 1;
  padding: 10px 16px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  cursor: pointer;
  font-size: .8125rem;
  transition: .2s;
}

.grind-option:hover {
  border-color: var(--color-accent);
}

.grind-option.is-selected {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.grind-option.is-soldout {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.grind-option__name {
  font-weight: 500;
  display: block;
}

.product-page__frequency {
  margin-bottom: 24px;
}

.product-page__frequency-label {
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-page__frequency-options {
  display: flex;
  gap: 8px;
}

.frequency-option {
  flex: 1;
  padding: 10px 16px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  cursor: pointer;
  font-size: .8125rem;
  transition: .2s;
}

.frequency-option:hover {
  border-color: var(--color-accent);
}

.frequency-option.is-selected {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.frequency-option__period {
  font-weight: 500;
  display: block;
}

.frequency-option__savings {
  font-size: .6875rem;
  opacity: .8;
}

/* Variant selector */
.product-page__variant-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 8px;
  font-size: .875rem;
  font-family: var(--font-body);
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center;
  background-size: 12px;
  margin-bottom: 16px;
  cursor: pointer;
}

/* Quantity selector and ATC */
.product-page__actions-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: stretch;
}

.product-page__quantity {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-page__quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: .2s;
}

.product-page__quantity-btn:hover {
  border-color: var(--color-primary);
}

.product-page__quantity-input {
  width: 48px;
  text-align: center;
  border: none;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
}

/* Add to cart actions */
.product-page__actions {
  flex: 1;
  display: flex;
}

.product-page__atc {
  flex: 1;
  width: 100%;
  padding: 16px 32px;
  background: #397bb6;
  /* Matching the light blue from reference */
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: .3s;
}

.product-page__atc:hover {
  opacity: .9;
}

.product-page__dynamic-checkout {
  width: 100%;
  margin-bottom: 24px;
}

.product-page__dynamic-checkout [data-shopify="payment-button"],
.product-page__dynamic-checkout .shopify-payment-button__button {
  border-radius: 999px !important;
  width: 100% !important;
}

.product-page__buy-now {
  flex: 1;
  padding: 16px 32px;
  background: #5a31f4;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Sticky ATC bar */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  transform: translateY(100%);
  transition: transform .4s;
}

.sticky-atc.is-visible {
  transform: translateY(0);
}

@media (max-width: 749px) {
  .sticky-atc {
    padding: 10px 12px;
  }

  .sticky-atc__info {
    gap: 8px;
    flex: 1;
    min-width: 0;
  }

  .sticky-atc__info>div:not(.sticky-atc__thumb) {
    flex: 1;
    min-width: 0;
  }

  .sticky-atc__thumb {
    width: 36px;
    height: 36px;
    padding: 2px;
    flex-shrink: 0;
  }

  .sticky-atc__title {
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-atc__price {
    font-size: 0.75rem;
  }

  .sticky-atc__actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .sticky-atc__variant-select {
    padding: 8px 24px 8px 8px;
    font-size: 0.75rem;
    background-position: right 8px center;
  }

  .sticky-atc__btn {
    padding: 14px 36px;
    font-size: 1rem;
    flex: 1.5;
  }
}

.sticky-atc__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-atc__thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--color-secondary);
  overflow: hidden;
  padding: 4px;
}

.sticky-atc__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sticky-atc__title {
  font-size: .875rem;
  font-weight: 500;
}

.sticky-atc__price {
  font-size: .875rem;
  color: rgba(26, 26, 26, .6);
}

.sticky-atc__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-atc__variant-select {
  padding: 10px 32px 10px 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .8125rem;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 10px;
}

/* ---------- COLLECTION PAGE ---------- */
.collection-page {
  padding: 40px 0 80px;
}

.collection-page__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 40px;
  text-align: center;
}

/* ---------- PAGE TEMPLATE ---------- */
.page-content {
  padding: 40px 0 80px;
}

.page-content__heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 40px;
}

.page-content__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: .9375rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, .75);
}

.page-content__body p {
  margin-bottom: 16px;
}

.page-content__body img {
  border-radius: 12px;
  margin: 24px 0;
}

/* ---------- CART DRAWER ---------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 300;
  transform: translateX(100%);
  transition: transform .4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, .08);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.cart-drawer__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.cart-drawer__close {
  font-size: 1.25rem;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-drawer__empty {
  text-align: center;
  padding: 40px 0;
  color: rgba(26, 26, 26, .5);
}

.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.cart-drawer__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.cart-drawer__item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-drawer__item-image img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

.cart-drawer__item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-drawer__item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.cart-drawer__item-title {
  font-weight: 600;
  font-size: .875rem;
  line-height: 1.3;
  color: #1a1a1a;
  text-decoration: none;
}

.cart-drawer__item-prices {
  text-align: right;
  font-weight: 600;
  font-size: .875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
}

.cart-drawer__item-variant {
  font-size: .75rem;
  color: rgba(26, 26, 26, .6);
  margin-top: 4px;
  margin-bottom: 8px;
}

.cart-drawer__item-subscription {
  font-size: .75rem;
  margin-bottom: 8px;
}

.cart-drawer__item-subscription-select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  background: #fff;
  font-size: .75rem;
  margin-top: 4px;
  width: 100%;
}

.cart-drawer__item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cart-drawer__quantity {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  height: 32px;
  overflow: hidden;
}

.cart-drawer__qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-drawer__qty-input {
  width: 32px;
  text-align: center;
  border: none;
  font-size: .875rem;
  font-weight: 500;
  background: transparent;
  pointer-events: none;
}

.cart-drawer__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(26, 26, 26, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.cart-drawer__remove:hover {
  color: var(--color-primary);
}

.cart-drawer__upsell {
  margin-top: 32px;
}

.cart-drawer__upsell-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}

.cart-drawer__upsell-carousel {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.cart-drawer__upsell-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #1a1a1a;
  padding: 0;
}

.cart-drawer__upsell-nav svg {
  width: 20px;
  height: 20px;
}

.cart-drawer__upsell-nav.js-upsell-prev {
  left: 0;
}

.cart-drawer__upsell-nav.js-upsell-next {
  right: 0;
}

.cart-drawer__upsell-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.cart-drawer__upsell-track::-webkit-scrollbar {
  display: none;
}

.cart-drawer__upsell-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f8fa;
  padding: 16px;
  border-radius: 12px;
  box-sizing: border-box;
}

.cart-drawer__upsell-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-drawer__upsell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: darken;
}

.cart-drawer__upsell-info {
  flex: 1;
}

.cart-drawer__upsell-name {
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.25;
  color: #1a1a1a;
}

.cart-drawer__upsell-price {
  font-size: .875rem;
  color: rgba(26, 26, 26, .7);
}

.cart-drawer__upsell-add {
  background: #73add6;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 6px 16px;
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .3s;
}

.cart-drawer__upsell-add:hover {
  opacity: 0.9;
}

.cart-drawer__footer {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 500;
}

.cart-drawer__checkout {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  cursor: pointer;
}

.cart-drawer__checkout:hover {
  opacity: .9;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 299;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- 404 ---------- */
.template-404 {
  text-align: center;
  padding: 100px 0;
}

.template-404 h1 {
  margin-bottom: 16px;
}

/* ---------- ANIMATION UTILITIES ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PRODUCT PAGE ENHANCEMENTS ---------- */

/* Reviews badge */
.product-page__reviews-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product-page__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 1px;
}

.product-page__reviews-count {
  font-size: .8125rem;
  color: rgba(26, 26, 26, .5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Accordion enhancements */
.product-page__accordion {
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding: 0;
}

.product-page__accordion:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.product-page__accordion summary {
  padding: 18px 0;
  font-size: .9375rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.product-page__accordion summary::-webkit-details-marker {
  display: none;
}

.product-page__accordion-icon {
  transition: transform .3s ease;
  flex-shrink: 0;
}

.product-page__accordion[open] .product-page__accordion-icon {
  transform: rotate(180deg);
}

.product-page__accordion-body {
  padding: 0 0 20px;
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, .7);
}

.product-page__accordion-body p {
  margin-bottom: 8px;
}

/* ---------- TASTING NOTES SECTION ---------- */
.product-tasting {
  max-width: 1280px;
  margin: 0 auto 0;
  width: calc(100% - 80px);
  border-radius: 24px;
  overflow: hidden;
}

.product-tasting__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.product-tasting__image {
  overflow: hidden;
  background: var(--color-secondary);
}

.product-tasting__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-tasting__placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #e8d5b7 0%, #d4a574 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
}

.product-tasting__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  background: var(--color-secondary);
}

.product-tasting__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 32px;
  line-height: 1.12;
}

.product-tasting__notes {
  margin-bottom: 24px;
}

.product-tasting__note-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.product-tasting__note-text {
  font-size: .9375rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, .75);
}

.product-tasting__cta {
  margin-top: 12px;
  align-self: flex-start;
}

@media (max-width: 749px) {
  .product-tasting {
    width: calc(100% - 32px);
  }

  .product-tasting__inner {
    grid-template-columns: 1fr;
  }

  .product-tasting__image {
    aspect-ratio: 1;
  }

  .product-tasting__content {
    padding: 40px 28px;
  }
}

/* ---------- ORIGIN STORY SECTION ---------- */
.product-origin {
  max-width: 1280px;
  margin: 60px auto;
  width: calc(100% - 80px);
  border-radius: 24px;
  overflow: hidden;
}

.product-origin__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.product-origin__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  background: var(--color-primary);
  color: #fff;
}

.product-origin__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 24px;
  line-height: 1.12;
  color: #fff;
}

.product-origin__text {
  font-size: .9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
}

.product-origin__text p {
  margin-bottom: 16px;
}

.product-origin__cta {
  margin-top: 12px;
  align-self: flex-start;
  color: #fff;
  border-color: #fff;
}

.product-origin__cta:hover {
  background: #fff;
  color: var(--color-primary);
}

.product-origin__image {
  overflow: hidden;
  background: var(--color-secondary);
}

.product-origin__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-origin__placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #f0e6d3 0%, #c9a87c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, .15);
}

@media (max-width: 749px) {
  .product-origin {
    width: calc(100% - 32px);
    margin: 40px auto;
  }

  .product-origin__inner {
    grid-template-columns: 1fr;
  }

  .product-origin__content {
    padding: 40px 28px;
    order: 2;
  }

  .product-origin__image {
    aspect-ratio: 1;
    order: 1;
  }
}

/* ---------- TESTIMONIALS SECTION ---------- */
.product-testimonials {
  padding: 40px 0;
  background: var(--color-secondary);
}

.product-testimonials__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: 8px;
}

.product-testimonials__subheading {
  font-size: .9375rem;
  color: rgba(26, 26, 26, .6);
  text-align: center;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.product-testimonials__carousel {
  overflow: hidden;
  position: relative;
}

.product-testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 8px;
  scroll-snap-type: x mandatory;
}

.product-testimonials__track::-webkit-scrollbar {
  display: none;
}

.product-testimonials__card {
  min-width: 340px;
  max-width: 380px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform .3s, box-shadow .3s;
}

.product-testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.product-testimonials__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.product-testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.product-testimonials__avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  flex-shrink: 0;
}

.product-testimonials__name {
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-testimonials__title {
  font-size: .75rem;
  color: rgba(26, 26, 26, .5);
  line-height: 1.3;
}

.product-testimonials__stars {
  color: #f5a623;
  font-size: .875rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.product-testimonials__quote {
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, .7);
  font-style: italic;
}

.product-testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.product-testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
}

.product-testimonials__arrow:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

@media (max-width: 749px) {
  .product-testimonials {
    padding: 60px 0;
  }

  .product-testimonials__card {
    min-width: 280px;
    max-width: 300px;
    padding: 24px;
  }
}

/* ---------- LIFESTYLE SECTION ---------- */
.product-lifestyle {
  max-width: 1280px;
  margin: 0 auto;
  width: calc(100% - 80px);
  border-radius: 24px;
  overflow: hidden;
}

.product-lifestyle__inner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lifestyle__image {
  position: absolute;
  inset: 0;
}

.product-lifestyle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-lifestyle__placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, #2c1810 0%, #5a3825 50%, #8b6914 100%);
}

.product-lifestyle__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.product-lifestyle__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
  max-width: 700px;
}

.product-lifestyle__heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}

.product-lifestyle__text {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-lifestyle__text p {
  margin-bottom: 12px;
}

.product-lifestyle__cta {
  display: inline-flex;
}

@media (max-width: 749px) {
  .product-lifestyle {
    width: calc(100% - 32px);
  }

  .product-lifestyle__inner {
    min-height: 400px;
  }

  .product-lifestyle__content {
    padding: 40px 24px;
  }
}

/* ---------- CHARITY CALLOUT SECTION ---------- */
.product-callout {
  padding: 40px 0;
}

.product-callout__inner {
  background: var(--color-primary);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  color: #fff;
}

.product-callout__icon {
  margin-bottom: 24px;
}

.product-callout__icon svg {
  color: var(--color-accent);
}

.product-callout__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.product-callout__text {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}

.product-callout__cta {
  display: inline-flex;
}

@media (max-width: 749px) {
  .product-callout {
    padding: 32px 0;
  }

  .product-callout__inner {
    padding: 48px 28px;
    border-radius: 16px;
  }
}

/* ---------- MISSION STATEMENT SECTION ---------- */
.product-mission {
  padding: 40px 0;
}

.product-mission__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.product-mission__badge {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.product-mission__heading {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-body-text);
}

.product-mission__text {
  font-size: .9375rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, .6);
}

@media (max-width: 749px) {
  .product-mission {
    padding: 32px 0;
  }
}

/* ---------- EXPERIENCE / RETAIL SECTION ---------- */
.product-experience {
  max-width: 1280px;
  margin: 0 auto 60px;
  width: calc(100% - 80px);
  border-radius: 24px;
  overflow: hidden;
}

.product-experience__inner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-experience__image {
  position: absolute;
  inset: 0;
}

.product-experience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-experience__placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
}

.product-experience__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.product-experience__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
  max-width: 600px;
}

.product-experience__heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.product-experience__text {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-experience__cta {
  display: inline-flex;
}

@media (max-width: 749px) {
  .product-experience {
    width: calc(100% - 32px);
    margin: 0 auto 40px;
  }

  .product-experience__inner {
    min-height: 300px;
  }

  .product-experience__content {
    padding: 40px 24px;
  }
}

/* ---------- PRODUCT ICONIC HERO (Crafted with Care) ---------- */
.product-iconic-section {
  padding: 0;
}

.product-iconic {
  display: flex;
  flex-direction: column;
}

.product-iconic__hero {
  position: relative;
  width: 100%;
}

.product-iconic__bg {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 800px;
  background: var(--color-secondary, #f0ede6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-iconic__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product-iconic__bg-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e0d5c1 0%, #c9b49a 100%);
}

.product-iconic__overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.product-iconic__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-primary);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 24px;
}

.product-iconic__badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: .875rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
}

.product-iconic__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.product-iconic__feature {
  text-align: center;
}

.product-iconic__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-iconic__icon svg {
  width: 28px;
  height: 28px;
}

.product-iconic__feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.product-iconic__feature-text {
  font-size: .9375rem;
  color: rgba(26, 26, 26, .7);
  line-height: 1.6;
}

@media (max-width: 749px) {
  .product-iconic__hero {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .product-iconic__bg {
    flex-direction: column;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 24px;
  }

  .product-iconic__bg-img,
  .product-iconic__bg-placeholder {
    position: relative;
    height: auto;
    aspect-ratio: 1;
  }

  .product-iconic__overlay {
    padding: 40px 28px;
    width: 100%;
  }

  .product-iconic__heading {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 24px;
  }

  .product-iconic__features {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---------- PRODUCT COMPARISON ---------- */
.product-compare {
  padding: 40px 0;
  background: #fff;
}

.product-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6vw;
  align-items: center;
}

.product-compare__card {
  background: var(--color-secondary, #faf9f6);
  border-radius: 24px;
  padding: 48px;
  height: 100%;
}

.product-compare__card--ours {
  background: var(--color-secondary);
}

.product-compare__card--theirs {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .03);
}

.product-compare__card-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 32px;
}

.product-compare__card-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-compare__card-heading--alt {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-align: center;
  margin-bottom: 40px;
}

.product-compare__card-sub {
  font-size: 1rem;
  color: rgba(26, 26, 26, .7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.product-compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-compare__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 1rem;
}

.product-compare__check {
  color: #2563eb;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.product-compare__versus {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.product-compare__vs-col {
  width: 45%;
  text-align: center;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.product-compare__vs-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

.product-compare__vs-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  font-size: .625rem;
}

.product-compare__vs-placeholder--ours {
  background: var(--color-primary);
  color: #fff;
}

.product-compare__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.product-compare__row:last-child {
  border-bottom: none;
}

.product-compare__row-ours,
.product-compare__row-theirs {
  width: 45%;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  line-height: 1.4;
}

.product-compare__row-ours {
  font-weight: 500;
}

.product-compare__row-theirs {
  color: rgba(26, 26, 26, .5);
}

@media (max-width: 999px) {
  .product-compare__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 749px) {
  .product-compare__card {
    padding: 32px 24px;
  }

  .product-compare__row-ours,
  .product-compare__row-theirs {
    font-size: .8125rem;
    gap: 8px;
  }
}

/* ---------- PRODUCT VIDEO ---------- */
.product-video {
  padding: 80px 0;
  text-align: center;
}

.product-video__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.product-video__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.product-video__sub {
  font-size: 1.125rem;
  color: rgba(26, 26, 26, .7);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.product-video__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
}

.product-video__embed iframe,
.product-video__native {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-video__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-video__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}

.product-video__play {
  position: relative;
  z-index: 2;
  transition: transform .3s;
}

.product-video__cover:hover .product-video__play {
  transform: scale(1.1);
}

.product-video__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  color: rgba(0, 0, 0, .5);
}

.product-video__placeholder svg {
  margin-bottom: 16px;
}

.product-video__cta {
  display: inline-flex;
  background: var(--color-primary);
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .3s;
}

.product-video__cta:hover {
  opacity: .9;
}

/* ---------- UGC VIDEO CAROUSEL ---------- */
.product-ugc {
  padding: 40px 0 20px;
  background: var(--color-background, #fff);
  overflow: hidden;
}

.product-ugc__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.product-ugc__scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.product-ugc__scroll::-webkit-scrollbar {
  display: none;
}

.product-ugc__grid {
  display: flex;
  gap: 16px;
  padding: 0 24px;
}

.product-ugc__card {
  flex: 0 0 40%;
  min-width: 140px;
  max-width: 220px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .product-ugc__grid {
    justify-content: center;
    padding: 0;
  }

  .product-ugc__card {
    flex: 0 0 calc((100% - 80px) / 6);
    min-width: 0;
    max-width: none;
  }
}

.product-ugc__media {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-ugc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.4s ease;
}

.product-ugc__card:hover .product-ugc__img {
  transform: scale(1.05);
}

.product-ugc__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ---------- TRUST BADGES ---------- */
.product-trust {
  padding: 20px 0 40px;
  background: var(--color-background, #fff);
  text-align: center;
}

.product-trust__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 40px;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.product-trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-trust__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-trust__icon svg {
  width: 100%;
  height: 100%;
}

.product-trust__text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary, #1a1a1a);
}

@media (max-width: 767px) {
  .product-trust__list {
    gap: 16px 24px;
  }

  .product-trust__text {
    font-size: 0.875rem;
  }
}

/* ---------- MOBILE GALLERY SLIDER ---------- */
.product-page__mobile-slider {
  display: none;
}

@media (max-width: 767px) {
  .product-page__mobile-slider {
    display: block;
  }

  .product-page__gallery-grid {
    display: none !important;
  }

  .product-page__gallery {
    margin-bottom: 16px;
    position: relative;
  }

  .mobile-slider__main {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
  }

  .mobile-slider__scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-slider__scroll::-webkit-scrollbar {
    display: none;
  }

  .mobile-slider__img {
    flex: 0 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 8px;
  }

  .mobile-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }

  .mobile-slider__arrow.prev {
    left: 16px;
  }

  .mobile-slider__arrow.next {
    right: 16px;
  }

  .mobile-slider__arrow svg {
    width: 18px;
    height: 18px;
    color: #333;
  }

  .mobile-slider__thumbnails {
    display: flex;
    gap: 8px;
    padding: 0 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-slider__thumbnails::-webkit-scrollbar {
    display: none;
  }

  .mobile-slider__thumb {
    flex: 0 0 calc(25% - 6px);
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s ease;
  }

  .mobile-slider__thumb.is-active {
    border-color: #333;
    opacity: 1;
  }

  .mobile-slider__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f7f7f7;
  }
}

/* =============================================
   STORY PAGE
   ============================================= */

.story-hero {
  text-align: center;
  padding: 80px 0 40px;
}

.story-hero__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.story-hero__subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.story-intro {
  padding: 60px 0;
}

.story-intro__inner {
  max-width: 720px;
  margin: 0 auto;
}

.story-intro__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.story-founder {
  padding: 60px 0;
  background: var(--color-secondary);
}

.story-founder__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.story-founder__image {
  flex: 0 0 280px;
}

.story-founder__image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.story-founder__content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
}

.story-founder__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
  font-style: italic;
}

.story-why {
  padding: 80px 0;
}

.story-why__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
}

.story-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.story-why__card {
  background: var(--color-secondary);
  border-radius: 20px;
  padding: 32px;
}

.story-why__card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.story-why__card p {
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
}

.story-mission {
  padding: 80px 0;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}

.story-mission h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 20px;
}

.story-mission__text {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: .9;
}

/* Story Page — Mobile */
@media (max-width: 749px) {
  .story-hero {
    padding: 48px 0 24px;
  }

  .story-hero__title {
    font-size: 2rem;
  }

  .story-hero__subtitle {
    font-size: 1rem;
  }

  .story-intro {
    padding: 36px 0;
  }

  .story-founder__inner {
    flex-direction: column;
    text-align: center;
  }

  .story-founder__image {
    flex: none;
    max-width: 240px;
    margin: 0 auto;
  }

  .story-why__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-mission {
    padding: 48px 0;
  }

  .story-mission h2 {
    font-size: 1.5rem;
  }

  .story-mission__text {
    font-size: 1rem;
  }
}

/* =============================================
   MY FRENCHIE PAGE
   ============================================= */

.frenchie-hero {
  text-align: center;
  padding: 80px 0 40px;
}

.frenchie-hero__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.frenchie-hero__subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.frenchie-section-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.frenchie-intro {
  padding: 60px 0;
  max-width: 720px;
  margin: 0 auto;
}

.frenchie-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.frenchie-cards {
  padding: 60px 0;
  background: var(--color-secondary);
}

.frenchie-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.frenchie-cards__item {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}

.frenchie-cards__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.frenchie-cards__item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.frenchie-cards__item p {
  font-size: .9rem;
  line-height: 1.7;
  color: #555;
}

.frenchie-health {
  padding: 80px 0;
}

.frenchie-health__split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.frenchie-health__block {
  background: var(--color-secondary);
  border-radius: 20px;
  padding: 32px;
}

.frenchie-health__block h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.frenchie-health__block p {
  font-size: .95rem;
  line-height: 1.7;
  color: #444;
}

.frenchie-care {
  padding: 60px 0;
  background: var(--color-secondary);
}

.frenchie-care__content {
  max-width: 720px;
  margin: 0 auto;
}

.frenchie-care__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.frenchie-experts {
  padding: 80px 0;
}

.frenchie-experts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.frenchie-experts__card {
  background: var(--color-secondary);
  border-radius: 20px;
  padding: 32px;
}

.frenchie-experts__card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: .04em;
}

.frenchie-experts__card p {
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
}

.frenchie-cta {
  padding: 80px 0;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}

.frenchie-cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 16px;
}

.frenchie-cta p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: .9;
}

.frenchie-cta .btn--primary {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

/* My Frenchie Page — Mobile */
@media (max-width: 749px) {
  .frenchie-hero {
    padding: 48px 0 24px;
  }

  .frenchie-hero__title {
    font-size: 2rem;
  }

  .frenchie-hero__subtitle {
    font-size: 1rem;
  }

  .frenchie-section-heading {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .frenchie-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .frenchie-cards__item {
    padding: 20px 16px;
  }

  .frenchie-health__split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .frenchie-experts__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .frenchie-cta {
    padding: 48px 0;
  }

  .frenchie-cta h2 {
    font-size: 1.5rem;
  }
.product-page__gallery-img {
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.product-card__image-wrapper {
  position: relative !important;
  overflow: hidden !important;
}

.product-card__image--primary {
  display: block !important;
  width: 100% !important;
  object-fit: cover !important;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1), visibility 1.2s cubic-bezier(.4,0,.2,1) !important;
}

.product-card__image--hover {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 0.85s cubic-bezier(.4,0,.2,1), visibility 1.2s cubic-bezier(.4,0,.2,1) !important;
  transform: scale3d(1.08, 1.08, 1) !important;
}

.product-card:hover .product-card__image--hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale3d(1, 1, 1) !important;
}

.product-card:hover .product-card__image--primary {
  opacity: 0 !important;
  transform: scale3d(1.08, 1.08, 1) !important;
}
.product-card__image-wrapper img.product-card__image--hover {
  max-height: none !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1) !important, transform 0.85s cubic-bezier(.4,0,.2,1) !important, visibility 1.2s cubic-bezier(.4,0,.2,1) !important;
}

.product-card:hover .product-card__image-wrapper img.product-card__image--hover {
  opacity: 1 !important;
  visibility: visible !important;
}

.product-card:hover .product-card__image-wrapper img.product-card__image--primary {
  opacity: 0 !important;
}

