/** Shopify CDN: Minification failed

Line 57:18 Expected identifier but found whitespace
Line 58:6 Unexpected "{"
Line 59:14 Expected ":"
Line 65:20 Expected identifier but found whitespace
Line 66:6 Unexpected "{"
Line 67:14 Expected ":"

**/
/* Custom Theme Styles - WARD PARIS */
@font-face {
  font-family: 'MatterRegular';
  src: url('MatterLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'MatterRegular';
  src: url('MatterRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Sweet Sans';
  src: url('SweetSansProThin.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet Sans';
  src: url('SweetSansProMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet Sans';
  src: url('SweetSansProBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ward-dark-green: #1a3a2e;
  --ward-cream: #FCF8E8;
  --ward-yellow: #f5e6d3;
  --ward-grey: #e8e8e3;
  --ward-green-bg: #2d4a3e;

  --primary-color: {
      {
      settings.color_primary
    }
  }

  ;

  --secondary-color: {
      {
      settings.color_secondary
    }
  }

  ;

  /* Theme Variables */
  --body-bg-color: #FCF8E8;
  --footer-font-color: #F0D4D3;
  --footer-link-color: #F0D4D3;
  --sweet-sans-font: "Sweet Sans",
  "Sweet Sans Pro Reg",
  sans-serif;
}

/* Base Styles */
html {
  background-color: var(--body-bg-color);
  /* Fix Safari status bar blue block */
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background-color: var(--body-bg-color);
  -webkit-tap-highlight-color: transparent;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

@supports (padding: max(0px)) {
  .site-header {
    padding-top: calc(2.06rem + env(safe-area-inset-top));
  }
}


h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 300;
  font-family: MatterRegular;
}

main#MainContent {
  padding-top: 0;
  transition: padding-top 0.3s ease;
}

/* Add padding on non-homepage pages where header is always visible */
body:not(.template-index) main#MainContent {
  padding-top: 101px;
}

/* On homepage, add padding when header becomes visible */
body.template-index .site-header.header-visible ~ main#MainContent {
  padding-top: 101px;
}

/* Override Bootstrap border-top color to Ward green */
.border-top {
  border-top-color: #152D24 !important;
}

/* Default link color */
a {
  color: #152D24;
  text-decoration: none;
}


/* Exclude product homepage titles from animated underline */
.ward-product-text-link,
.ward-product-name {
  position: relative;
}

.ward-product-text-link:hover::after,
.ward-product-name:hover::after {
  display: none;
}

/* Animated underline on hover for footer links - grows from left to right */
/* Animated underline for footer links - defined later in file */

@keyframes underlineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}



/* Header Styles */
.site-header {
  padding: 2.06rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--ward-cream);
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Show header by default on all pages except homepage */
body:not(.template-index) .site-header {
  opacity: 1;
}

/* Show header when scrolled past hero on homepage */
.site-header.header-visible  {
  opacity: 1;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.header-left {
  flex: 1;
  min-width: 0;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-center .navbar-brand {
  margin: 0;
  padding: 0;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.12rem;
}

.custom-nav-menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-nav-menu .nav-item {
  margin-left: 3, 12rem;
}

.nav-link {
  color: #152D24;
  font-family: MatterRegular;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 430;
  line-height: 2.25rem;
  /* 300% */
  letter-spacing: 0.0075rem;
  text-transform: uppercase;
}

.custom-nav-menu .nav-link:hover {
  opacity: 0.7;
}

.logo-img {
  max-height: 50px;
  width: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Hide logo initially on homepage (will be shown via JS when hero is scrolled) */
.site-header:not(.header-visible) .logo-img {
  opacity: 0;
}

.site-header.header-visible .logo-img {
  opacity: 1;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
}

.mobile-menu-toggle svg {
  display: block;
}

/* Brand tagline */
.brand-tagline {
  display: none;
  font-family: MatterRegular;
  font-size: 0.75rem;
  color: #152D24;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-top: 4px;
}

.brand-name {
  display: block;
}


/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--ward-cream);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding-top: 80px;
}

.mobile-menu-close {
  position: absolute;
  top: 40px;
  left: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close svg {
  display: block;
}

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

.mobile-menu-content {
  padding: 2rem;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.mobile-menu-item {
  margin-bottom: 1.5rem;
}

.mobile-menu-link {
  display: block;
  color: #152D24;
  font-family: MatterRegular;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-link:hover {
  opacity: 0.7;
}

body.menu-open {
  overflow: hidden;
}

/* WARD Hero Banner */
.ward-hero-banner {
  height: 100vh;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  height: calc(100vh + env(safe-area-inset-top));
  min-height: calc(100vh + env(safe-area-inset-top));
  background-color: #183c2f;
  position: relative;
  z-index: 20;
  overflow: hidden;
  margin-top: 0;
  padding-top: env(safe-area-inset-top);
}

/* Image as background */
.pb-row-splash-page__img.image-as-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + env(safe-area-inset-top));
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.1);
  animation: heroBackgroundFadeIn 2s ease-out 0.3s forwards;
}

/* Background image fade-in animation */
@keyframes heroBackgroundFadeIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ward-hero-content {
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;        /* center horizontally */
  justify-content: center;    /* center vertically */
  position: relative;
  padding: 3rem 2rem;
}

/* Hero CTA Link */
.pb-row-splash-page__cta {
  --bottom: 0px;
  --height: 1px;
  text-decoration: none;
  color: #FCF8E8;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: absolute;
  z-index: 25;              /* above everything in hero & products */
  left: 50%;
  bottom: 3.5rem;         /* bring it a bit higher so it's clearly visible */
  transform: translateX(-50%); /* center horizontally */
  pointer-events: auto;   /* ensure CTA can always be clicked */
  font-family: 'MatterRegular';
}


.pb-row-splash-page__cta > span {
  pointer-events: none;
}


/* Text animation support */
.pb-row-splash-page__cta .word {
  clip-path: inset(0 -0.5ch);
}

.pb-row-splash-page__cta .wordText {
  display: inline-block;
}

.pb-row-splash-page__cta[data-scroll] .wordText {
  transform: translateY(110%) rotateX(4deg);
}

.pb-row-splash-page__cta[data-scroll].is-inview .wordText {
  transform: translateY(0px) rotateX(0deg);
  transition-property: opacity, transform;
  transition-duration: calc(800ms * 0.40909091), 800ms;
  transition-delay: calc(0ms + (var(--line-total, 1) - var(--line-index, 0)) * 100ms);
  transition-timing-function: linear, cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pb-row-splash-page__cta .whitespace {
  display: inline-block;
  width: 0.25em;
  flex: 0 0 0.25em;
}

/* Ensure CTA text is always visible (override scroll text animation if classes change) */
.pb-row-splash-page__cta .wordText {
  transform: none !important;
}

.ward-hero-logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 15px));
  z-index: 3;
}

.ward-hero-logo {
  display: inline-block;
}

.hero-logo-img {
  max-width: 450px;
  width: 100%;
  height: auto;
  display: block;
}

.ward-hero-tagline {
  position: absolute;
  bottom: calc(50% - 414.75px);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'MatterLight', 'Matter', sans-serif;
  font-size: 45.5px;
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: 1.82px;
  color: #f0d4d3;
  text-align: center;
  text-transform: uppercase;
  white-space: pre-wrap;
  max-width: 486px;
  z-index: 3;
}

.ward-hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: transparent;
  z-index: 1;
}

.ward-hero-brand {
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ward-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.hero-heading,
.hero-description,
.hero-button {
  opacity: 0;
  transform: translateY(30px);
}

/* WARD Products Section */
.ward-products-section {
  background-color: var(--ward-cream);
  padding: 90px 0;
}

/* When hero is visible, temporarily disable hover/click on WARD product cards */
.ward-products-section.ward-products-hover-disabled .ward-product-card {
  pointer-events: none;
  z-index: 0;
}

/* When CTA-triggered scroll is running, disable all pointer events on products section */
.ward-products-section.ward-products-scroll-lock,
.ward-products-section.ward-products-scroll-lock * {
  pointer-events: none !important;
}

/* Hover effects - GSAP controlled with CSS transitions for smooth animations */
.ward-products-section .row .col-12 {
  transition: flex 0.25s ease-out, max-width 0.25s ease-out;
  will-change: flex, max-width;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.ward-section-heading {
  color: #152D24;
  text-align: center;
  font-family: MatterRegular;
  font-size: 24px;
  font-style: normal;
  font-weight: 430;
  line-height: 26.25px;
  /* 109.375% */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  margin-bottom: 70px;
}

.ward-product-card {
  overflow: hidden;
  transition: all 0.5s ease;
  height: 100%;
  width: 100%;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  z-index: 1;
}

/* First product expands on hover */
.ward-product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Image wrapper link */
.ward-product-image-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

/* Text link for product title + type inside card */
.ward-product-text-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

.ward-product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 24.5 / 32.875;
  flex-shrink: 0;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ward-product-rebelle .ward-product-image-wrapper {
  /* Background image set via inline style from product media */
  background-color: #f5e6d3;
  /* Fallback color if no background image */
}

.ward-product-reine .ward-product-image-wrapper {
  /* Background image set via inline style from product media */
  background-color: #e8e8e3;
  /* Fallback color if no background image */
}

.ward-product-rapide .ward-product-image-wrapper {
  /* Background image set via inline style from product media */
  background-color: #2d4a3e;
  /* Fallback color if no background image */
}

.ward-product-image {
  max-width: 100%;
  max-height: 470px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ward-product-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 40px 80px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* Rapide: overlay content aligned to the left side */
.ward-product-rapide .ward-product-hover-overlay {
  align-items: flex-start;
  text-align: left;
}

/* Removed - handled by GSAP now */
/* .ward-product-card:hover .ward-product-hover-overlay {
  opacity: 1;
  pointer-events: auto;
} */

.ward-fragrance-notes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 70px;
}
.ward-product-rapide .ward-fragrance-note {
  color: #F0D4D3;
}

.ward-fragrance-note {

  text-transform: uppercase;
  text-align: right;
  color: #F0D4D3;

  text-align: center;
  font-family: MatterRegular;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px; /* 131.25% */
  letter-spacing: 0.32px;
  max-width: 350px;
}

.ward-fragrance-note span {
  color: #F0D4D3;
  font-family: MatterRegular;
  font-size: 0.46875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.64063rem; /* 350% */
  letter-spacing: 0.00469rem;
}

.ward-product-rebelle .ward-fragrance-note span {
  color: #152D24;
}

.ward-product-rebelle .ward-fragrance-note {
  color: #152D24;
}

.ward-preorder-button {
  display: inline-block;
  text-align: center;
  font-family: "Sweet Sans";
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 0.75rem */
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
  pointer-events: auto;
  padding: 1.5rem 3rem;
  background-color: transparent;
  text-decoration: none;
  margin: 0 60px;
  color: #F0D4D3;
  border: 1px solid #F0D4D3;
}

.ward-product-rebelle .ward-preorder-button {
  color: #152D24;
  border: 1px solid #152D24;
}

.ward-product-rebelle .ward-preorder-button:hover {
  background-color: #152D24;
  color: #fcf8e8;
}

.ward-preorder-button:hover {
  background-color: #F0D4D3;
  color: #152D24;
}

.ward-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.3);
  font-size: 1.2rem;
}

.ward-product-info {
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.ward-product-name {
  color: #152D24;

  text-align: center;
  font-family: MatterRegular;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 430;
  line-height: 120%;
  /* 1.8rem */
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

.ward-product-type {
  color: #152D24;

  text-align: center;
  font-family: MatterRegular;
  font-size: 0.69075rem;
  font-style: normal;
  font-weight: 430;
  line-height: 1.5295rem;
  /* 221.429% */
  letter-spacing: 0.02075rem;
}

/* Product Cards */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.product-card img {
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Thumbnail Images */
.thumbnail-image {
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail-image:hover {
  opacity: 0.7;
  border-color: var(--primary-color);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
}

/* Sweet Sans Pro Font Classes */
.sweetsansproregular {
  font-family: "Sweet Sans Pro Reg";
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

.sweetsanspromedium {
  font-family: "Sweet Sans Pro Med";
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

.sweetsansprobold {
  font-family: "Sweet Sans Pro Bd";
  font-display: swap;
  font-style: normal;
  font-weight: normal;
}

/* WARD Footer */
.ward-footer {
  background-color: var(--ward-dark-green);
  color: var(--footer-font-color);
  position: relative;
  overflow: hidden;
  padding: 80px 0 240px;
  font-family: var(--sweet-sans-font);
}

.ward-footer-logo {
  bottom: 50px;
  left: 30px;
  width: calc(100% - 60px);
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.footer-logo-img {
  width: 100%;
  height: auto;
}

.ward-footer-mobile-logo {
  display: none;
  margin: 20px 0;
  text-align: center;
}

.footer-mobile-logo-img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.ward-newsletter {
  position: relative;
  z-index: 1;
}

.ward-footer-heading {
  color: #F0D4D3;

  font-family: "Sweet Sans Pro Med";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem;
  /* 283.333% */
  margin-bottom: 0.5rem;
}

.ward-newsletter-form {
  max-width: 500px;
}

.ward-email-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #F0D4D3;
}

/* Newsletter message (success / error text under form) */
.ward-newsletter-message {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-family: "Sweet Sans Pro Med";
  color: #F0D4D3;
}

.ward-newsletter-message.error {
  color: #F0D4D3;
}

.ward-newsletter-message.success {
  color: #F0D4D3;
}

.ward-email-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--footer-font-color);
  font-size: 12px;
  font-family: var(--sweet-sans-font);
  text-transform: uppercase;
  padding: 15px 20px;
  outline: none;
}

.ward-email-input::placeholder {
  color: #F0D4D3;
  text-transform: uppercase;
}

.ward-email-submit {
  background: transparent;
  border: none;
  color: var(--footer-font-color);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  right: 10px;
  position: relative;
}

.ward-email-submit:hover {
  transform: translateX(5px);
}

.ward-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ward-checkbox-wrapper input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border: 0.7px solid #F0D4D3;
  background: transparent;
  border-radius: 2px;
  border-radius: 0;
}

.ward-checkbox-wrapper input[type="checkbox"]:checked {
  background: #F0D4D3;
  border-color: #F0D4D3;
}

.ward-checkbox-label {
  font-size: 14px;
  color: var(--footer-font-color);
  font-family: 'MatterRegular';
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

.ward-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ward-footer-nav li {
  margin-bottom: 15px;
}

.ward-footer-link {
  color: var(--footer-link-color);
  text-decoration: none !important;
  font-family: var(--sweet-sans-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  display: inline-block;
  position: relative;
}

.ward-footer-link:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

.ward-footer-separator {
  font-size: 0.7em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}

.ward-footer-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--footer-link-color);
  transform-origin: left;
  animation: underlineGrow 0.3s ease-out forwards;
}

.ward-footer-policies {
  color: var(--footer-font-color);
  font-family: var(--sweet-sans-font);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem;
  /* 283.333% */
}

.ward-footer-copyright {
  color: #F0D4D3;

  font-family: MatterRegular;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5rem;
  /* 200% */
}



/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Cart Badge Animation */
#cart-count {
  transition: transform 0.3s ease;
}

#cart-count.updated {
  animation: bounce 0.5s ease;
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* ============================================
   PRODUCT PAGE STYLES - REINE Design
   ============================================ */

.product-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: #fcf8e8;
}

/* Section 1: Product Hero - Image Left, Info Right */
.product-hero-section {
  background-color: #fcf8e8;
  min-height: 80vh;
}

.product-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 80vh;
}

.product-hero-image-side {
  background-color: var(--ward-dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-hero-main-image {
  max-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.product-hero-info-side {
  background-color: var(--ward-cream);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Section 1: Product Hero */
.product-hero {
  display: flex;
  min-height: 100vh;
}

.product-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

.product-hero-image {
  background-color: var(--ward-dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
}

.product-main-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.product-hero-info {
  background-color: var(--ward-cream);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-title {
  color: #152D24;
  text-align: center;
  font-family: MatterRegular, sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 430;
  line-height: 2.625rem;
  /* 131.25% */
  letter-spacing: 0.02rem;
  margin-bottom: 0.5rem;
}

.product-subtitle {
  color: #152D24;
  text-align: center;
  font-family: MatterRegular;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 430;
  line-height: 1rem;
  /* 114.286% */
  letter-spacing: 0.02625rem;
  margin-bottom: .81rem;
}

.product-price {
  color: #152D24;
  text-align: center;
  font-family: MatterRegular;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 430;
  line-height: 1rem;
  /* 114.286% */
  letter-spacing: 0.02625rem;
  margin-bottom: 2.38rem;
}

.product-description {
  font-family: MatterRegular, sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  /* 142.857% */
  letter-spacing: 0.02625rem;
  text-align: center;
  max-width: 22.6rem;
  margin-bottom: 1rem;
}

.preorder-info {
  font-family: MatterRegular, sans-serif;
  font-size: 14px;
  color: #152D24;
  margin-bottom: 40px;
  font-style: italic;
}

.product-options {
  margin-bottom: 30px;
}

.option-label {
  display: block;
  font-family: MatterRegular, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #152D24;
  margin-bottom: 10px;
}

.option-select {
  width: 100%;
  max-width: 300px;
  padding: 12px 15px;
  border: 1px solid #152D24;
  background-color: transparent;
  font-family: MatterRegular, sans-serif;
  font-size: 14px;
  color: #152D24;
  margin-bottom: 20px;
  cursor: pointer;
}

.option-select:focus {
  outline: none;
  border-color: var(--ward-dark-green);
}

#product-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-preorder {
  background-color: var(--ward-dark-green);
  border: 1px solid var(--ward-dark-green);
  padding: 1.25rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  max-width: 18.75rem;
  width: 100%;
  color: #F0D4D3;
  text-align: center;
  font-family: "Sweet Sans";
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 0.75rem */
  letter-spacing: 0.05rem;
}

.btn-preorder:hover,
.btn-preorder.btn-preorder--added {
  background-color: #F0D4D3;
  color: #152D24;
  border-color: #F0D4D3;
  transform: translateY(-2px);
}

.btn-preorder:active {
  transform: translateY(0);
}

/* Section 2: Scent Profile */
.product-scent-profile {
  background-color: var(--ward-cream);
  padding: 10rem 0;
}

.scent-profile-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.scent-profile-text {
  display: flex;
  flex-direction: column;
  max-width: 22.3125rem;
  margin-left: auto;
}

.scent-profile-heading {
  color: #152D24;

    font-family: 'MatterRegular';
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.625rem;
  letter-spacing: 0.02rem;
  margin-bottom: 1.1rem
}

.ingredients-toggle {
  background: transparent;
  border: none;
  color: #152D24;
  text-align: left;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-bottom: 20px;
  color: #152D24;
  font-family: MatterRegular, sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 430;
  line-height: 1.25rem;
  letter-spacing: 0.02625rem;
}

.ingredients-toggle:hover {
  opacity: 0.7;
}

.ingredients-content {
  font-family: MatterRegular, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #152D24;
  margin-top: 20px;
  overflow: hidden;
}

.ingredients-content.ingredients-closed {
  height: 0;
  opacity: 0;
}

.ingredients-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Ensure ingredients-slider shows as grid on desktop */
.ingredients-slider:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ingredient-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  min-height: 200px;
}

.ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section 3: Lifestyle */
.product-lifestyle {
  background-color: var(--ward-cream);
  padding: 2rem 0;
  overflow-x: visible; /* Allow horizontal overflow from lifestyle image */
}

.lifestyle-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.lifestyle-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: visible; /* Allow overflow in all directions initially */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align to left for scaling from left */
  /* Use clip-path to clip only top and bottom, allowing horizontal overflow */
  clip-path: polygon(-100% 0, 200% 0, 200% 100%, -100% 100%);
}

.lifestyle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: left center; /* Scale from left side to fill left to middle */
  will-change: transform; /* Optimize for animation */
  position: absolute; /* Allow it to extend beyond wrapper horizontally */
  left: 0;
  top: 0;
  min-width: 100%; /* Ensure it can scale beyond wrapper */
}

.lifestyle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 2;
  text-align: center;
  /* Ensure overlay stays centered in wrapper regardless of image expansion */
  pointer-events: none; /* Don't interfere with interactions */
  width: 100%;
  height: 100%;
}

.product-title-overlay {
  color: #F0D4D3;
  text-align: center;
  font-family: var(--sweet-sans-font);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.625rem;
  /* 131.25% */
  letter-spacing: 0.02rem;
}

.product-title-overlay.product-rapide {
  color: #152D24;
}

.french-translation {
  color: #F0D4D3;
  text-align: center;
  font-family: "Sweet Sans", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem;
  /* 250% */
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  display: block;
  width: 100%;
  margin: 0 auto;
}

.brand-philosophy {
  padding-top: 40px;
}

.philosophy-text {
  font-family: MatterRegular, sans-serif;
  color: #152D24;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 430;
  line-height: 1.375rem;
  /* 157.143% */
  letter-spacing: 0.02625rem;
  max-width: 26.1875rem;
}

.product-collection-nav {
  background-color: var(--ward-cream);
  padding: 6.25rem 0;
  text-align: center;
}

.collection-nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.collection-nav-heading {
  font-family: MatterRegular;
  color: #152D24;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 430;
  line-height: 2.625rem;
  /* 175% */
  letter-spacing: 0.015rem;
  margin: 0;
}

.collection-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  margin: 2.19rem auto 0 auto;
}

.collection-product-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.collection-product-card:hover {
  transform: none;
}

.collection-product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.collection-product-image-wrapper {
  position: relative;
  padding: 0 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--ward-yellow);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}

.collection-product-caption {
  display: block;
  font-size: 14pt;
  color: #152D24;
  font-family: MatterRegular, sans-serif;
  margin-top: 25px;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
}

.collection-product-card:hover .collection-product-caption {
  opacity: 1;
}

.collection-product-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.collection-product-card:hover .collection-product-image {
  transform: scale(1.05);
}

.collection-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.3);
  font-size: 1.2rem;
}

.collection-product-info {
  text-align: center;
}

.collection-product-name {
  color: #152D24;
  text-align: center;
  font-family: MatterRegular, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 430;
  line-height: 120%;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.collection-product-type {
  color: #152D24;
  text-align: center;
  font-family: MatterRegular, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 430;
  line-height: 24.472px;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.collection-nav-link {
  font-family: MatterRegular;
  color: #152D24;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 430;
  line-height: 1.25rem;
  /* 142.857% */
  letter-spacing: 0.02625rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.collection-nav-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* Section 5: Product Gallery */
.product-gallery {
  background-color: var(--ward-cream);
  padding: 0 60px 80px;
}

.product-gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.sidebar-menu {
  margin: 0;
  padding: 0;
}

.sidebar-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.sidebar-menu li a {
  color: #152D24;
  font-family: MatterRegular;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.05rem;
  text-decoration: none;
  text-transform: uppercase;
}

.sidebar-link.active {
  font-weight: 500;
}

.page-content {
  min-height: 60vh;
}

.page-content .title {
  color: #152D24;
  font-family: MatterRegular;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 430;
  line-height: normal;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.page-content .description {
  padding-bottom: 150px;
}

.description p,
.description {
  color: #152D24;
  font-family: MatterRegular;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5rem;
  /* 150% */
  letter-spacing: 0.01rem;
}

.description a {
  color: #152D24;
}

.description h1,
.description h2,
.description h3,
.description h4,
.description h5,
.description h6 {
  text-transform: uppercase;
}

.faq h1.h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.2px;
  margin-bottom: 4.375rem;
}

.faq-section-title {
  letter-spacing: 0.8px;
  border-bottom: 1px solid #152D24;
  color: #152D24;
  font-family: MatterRegular;
  font-size: 1rem;
  font-style: normal;
  font-weight: 430;
  line-height: normal;
  letter-spacing: 0.05rem;
  padding-bottom: 1.5rem;
  margin-top: 5rem;
}

.faq .accordion-button:not(.collapsed) {
  color: #152D24;
}

.faq-section .container {
  border-top: 1px solid #152D24;
}

.faq-title {
  font-size: 12px;
}

/* Custom accordion styling */
.accordion-item {
  border-left: 0;
  border-right: 0;
  background: transparent;
}

.accordion-button::after {
  display: none;
}

.accordion-item {
  border-bottom: 1px solid #152D24;
}

.accordion-item:first-of-type {
  border-top: 0;
}

.accordion-item:last-of-type {
  border-bottom: 0;
}

.accordion-button {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: transparent;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  font-family: MatterRegular;
  letter-spacing: 0.4px;
}

.accordion-button svg {
  margin-right: 0.5rem;
  /* Space between icon and text */
}

.accordion-button:not(.collapsed) .plus,
.accordion-button .minus {
  display: none;
}

.accordion-button:not(.collapsed) .minus,
.accordion-button .plus {
  display: block;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--bs-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 0 0 1.5rem 0;
}

/* Cart Page Styles */
.cart-page {
  min-height: 60vh;
}

.cart-page h1,
.cart-page h2,
.cart-page h3 {
  font-family: MatterRegular;
  color: #152D24;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
}

.cart-page,
.cart-page p,
.cart-page span,
.cart-page label {
  font-family: MatterRegular;
  color: #152D24;
}

.cart-item {
  transition: opacity 0.3s ease;
}

.cart-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 200px;
}

.cart-item-price .price {
  font-weight: 500;
  font-size: 1rem;
}

.cart-item-price .price-compare {
  font-size: 0.875rem;
}

.quantity-input-group {
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 120px;
}

.quantity-btn {
  width: 2rem;
  height: 2rem;
  color: #152D24;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: transparent;
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-input {
  width: 3rem;
  height: 2rem;
  text-align: center;
  border: 1px solid #152D24;
  border-radius: 0;
  border: none;
  -moz-appearance: textfield;
  background-color: transparent;
}

#shopify-section-template--19403881545882__hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh + env(safe-area-inset-top));
  z-index: 100;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item-total {
  font-size: 1.125rem;
}

.remove-item {
  color: #6c757d;
  font-size: 0.875rem;
  padding: 0;
}

.remove-item:hover {
  color: #dc3545;
}

.cart-totals {
  padding: 1.5rem;
  border-radius: 0.25rem;
}

.cart-empty {
  padding: 3rem 1rem;
}

.cart-note textarea {
  resize: vertical;
  border: 1px solid #152D24;
  border: none;
  border-radius: 0;
  padding: 1rem;
  font-family: MatterRegular;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5rem;
  letter-spacing: 0.01rem;
  background-color: transparent;
}

/* Cart buttons styled like PRE-ORDER button */
.cart-actions .btn-primary,
.cart-actions .btn-outline-secondary,
.cart-empty .btn-primary {
  background-color: var(--ward-dark-green);
  border: 1px solid var(--ward-dark-green);
  padding: 1.25rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  color: #F0D4D3;
  text-align: center;
  font-family: "Sweet Sans";
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.05rem;
  border-radius: 0;
}

.cart-actions .btn-primary:hover,
.cart-actions .btn-outline-secondary:hover,
.cart-empty .btn-primary:hover {
  background-color: #F0D4D3;
  color: #152D24;
  border-color: #F0D4D3;
  transform: translateY(-2px);
}


.pin-spacer {
  pointer-events: none;
}