/** Shopify CDN: Minification failed

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

**/
/* Theme specific styles */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

/* Add these styles for the header logo and announcement bar */
.header__logo {
  font-size: 24px;
  font-weight: 400; /* Reduced from 700 to 400 */
  letter-spacing: 1px;
}

.header__logo-link {
  font-weight: 400; /* Ensure the link also has reduced weight */
}

.header__menu {
  display: flex;
  gap: 30px;
}

.header__menu-item {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.header__menu-item:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.header__menu-item:hover:after {
  width: 100%;
}

.header__icons {
  display: flex;
  gap: 15px;
}

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

/* Add these styles for the header logo and announcement bar */
.announcement-bar {
  background-color: #f5f5f5;
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase; /* Ensure text is uppercase */
}

.announcement-bar__text {
  font-weight: 500;
}

/* Hero Section - Updated for full image display */
.hero {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.hero__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center; /* Center-aligned so text stays in frame on mobile */
  max-width: 100%;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Changed from cover to contain to show full image */
  max-width: 100%;
}

/* Ensure hero image is fully visible on mobile */
@media screen and (max-width: 749px) {
  /* Removed incorrect scale transform to ensure video runs edge-to-edge */
  .hero__video {
    object-fit: cover;
    object-position: center center; /* Keep center-aligned on mobile */
    width: 100%;
    height: auto;
  }

  .hero__image {
    object-fit: contain; /* Ensure full image is visible on mobile */
    width: 100%;
    height: auto;
  }
}

/* Intro Quote Styles */
.intro-quote {
  padding: 60px 0;
  text-align: center;
  background-color: #ffffff;
}

.intro-quote__content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-quote__text {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  color: #121212;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.intro-quote__author {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
}

/* Category Filter */
.category-filter {
  padding: 0 0 30px 0;
  margin-bottom: 30px;
}

.category-filter__wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.category-filter__item {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  color: #666;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.category-filter__item:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.category-filter__item:hover,
.category-filter__item--active {
  color: #121212;
}

.category-filter__item:hover:after,
.category-filter__item--active:after {
  width: 100%;
}

/* All Products Section */
.all-products {
  padding: 0 0 80px;
}

.all-products__title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.5px;
}

.all-products__description {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  color: #666;
}

.all-products__grid {
  margin-bottom: 50px;
}

.all-products__view-all {
  text-align: center;
  margin-top: 30px;
}

/* Collection Page */
.collection {
  margin-bottom: 80px;
}

.collection__header {
  padding: 60px 0;
  text-align: center;
  background-color: #f9f9f9;
  margin-bottom: 40px;
}

.collection__title {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.collection__description {
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.collection__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.collection__count {
  font-size: 14px;
  color: #666;
}

.collection__sort {
  display: flex;
  align-items: center;
}

.collection__sort-label {
  font-size: 14px;
  margin-right: 10px;
  color: #666;
}

.collection__sort-wrapper {
  position: relative;
}

.collection__sort-select {
  padding: 8px 30px 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  appearance: none;
  background-color: #fff;
  font-size: 14px;
  min-width: 180px;
}

.collection__sort-wrapper svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.collection__grid {
  margin-bottom: 50px;
}

.collection__empty {
  text-align: center;
  padding: 50px 0;
  color: #666;
}

.collection__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.collection__pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.collection__pagination-link:hover {
  border-color: #121212;
}

.collection__pagination-link--current {
  background-color: #121212;
  color: #fff;
  border-color: #121212;
}

.collection__pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.collection__pagination-arrow:hover {
  border-color: #121212;
}

/* Product Grid and Cards - Fixed Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.product-card {
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  transition: none !important; /* Remove any transitions that might interfere */
}

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

.product-card__image-wrapper {
  position: relative;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%; /* This ensures 1:1 aspect ratio */
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  display: block !important;
  visibility: visible !important;
}

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

/* Quick Add styling fix - remove double black layer */
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}

.product-card__quick-add-button {
  width: 100%;
  padding: 0;
  background: none;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-card__title a {
  color: #121212;
  text-decoration: none;
}

.product-card__price {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.product-card__price--sale {
  color: #d82c0d;
  margin-right: 5px;
}

/* Product Tags Styling */
.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.product-card__tag {
  display: inline-block;
  padding: 4px 8px;
  background-color: #f5f5f5;
  border-radius: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  transition: all 0.3s ease;
}

/* Tag-specific colors */
.product-card__tag[data-tag="recovery"] {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.product-card__tag[data-tag="performance"] {
  background-color: #e3f2fd;
  color: #1565c0;
}

.product-card__tag[data-tag="anti-aging"] {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

.product-card__tag[data-tag="anti-inflammatory"] {
  background-color: #fff3e0;
  color: #e65100;
}

.product-card__button {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #121212;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: auto;
}

.product-card__button:hover {
  background-color: #121212;
  color: #ffffff;
}

.featured-collection {
  padding: 80px 0;
  background-color: #ffffff;
}

.featured-collection__title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.5px;
}

.featured-collection__description {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  color: #666;
}

.featured-collection__view-all {
  text-align: center;
}

.button--outline {
  background-color: transparent;
  color: #121212;
  border: 1px solid #121212;
  padding: 12px 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.button--outline:hover {
  background-color: #121212;
  color: #ffffff;
}

/* Product Page Styles */
.product {
  margin-bottom: 80px;
}

.product__breadcrumbs {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 40px;
  font-size: 12px;
}

.product__breadcrumb-link {
  color: #666;
}

.product__breadcrumb-separator {
  margin: 0 5px;
  color: #ccc;
}

.product__breadcrumb-current {
  color: #121212;
}

.product__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.product__gallery {
  position: sticky;
  top: 100px;
}

.product__main-image {
  margin-bottom: 20px;
  background-color: #f5f5f5;
  aspect-ratio: 1 / 1;
}

.product__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product__thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product__thumbnail {
  width: 80px;
  height: 80px;
  background-color: #f5f5f5;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.product__thumbnail.active,
.product__thumbnail:hover {
  opacity: 1;
}

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

/* Updated product title styling */
.product__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product__price-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.product__price {
  font-size: 24px;
  font-weight: 500;
}

.product__price--sale {
  color: #d82c0d;
  margin-right: 10px;
}

.product__price--compare {
  color: #666;
  font-weight: normal;
  font-size: 18px;
}

.product__price--savings {
  display: block;
  font-size: 14px;
  color: #d82c0d;
  margin-top: 5px;
}

.product__stock {
  display: flex;
  align-items: center;
  color: #2e7d32;
  font-size: 14px;
}

.product__stock--out {
  color: #d32f2f;
}

/* Add these styles for the new stock button */
.product__stock-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.product__stock-button--in {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.product__stock-button--out {
  background-color: #ffebee;
  color: #d32f2f;
  border: 1px solid #ef9a9a;
}

.product__stock-icon {
  margin-right: 6px;
  display: flex;
  align-items: center;
}

.product__reviews-app {
  margin-bottom: 20px;
}

.product__short-description {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.product__description-toggle {
  background: none;
  border: none;
  color: #121212;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-top: 10px;
  font-size: 14px;
}

/* Product Description Fade Effect */
.product__description-wrapper {
  position: relative;
  cursor: pointer;
}

.product__description-preview {
  position: relative;
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.product__description-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

.product__description-full {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.product__description-wrapper.expanded .product__description-preview {
  display: none;
}

.product__description-wrapper.expanded .product__description-full {
  display: block !important;
}

.product__benefits {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.product__benefits-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.product__benefits-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.product__benefits-icon {
  margin-right: 10px;
  color: #2e7d32;
}

.product__form {
  margin-bottom: 30px;
}

.product__variants {
  margin-bottom: 20px;
}

.product__variant-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.product__variant-wrapper {
  position: relative;
}

.product__variant-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  appearance: none;
  background-color: #fff;
  font-size: 14px;
}

.product__variant-wrapper svg {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.product__quantity {
  margin-bottom: 20px;
}

.product__quantity-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.product__quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: fit-content;
}

.product__quantity-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.product__quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
}

.product__actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.product__add-to-cart {
  flex: 1;
  padding: 15px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product__wishlist {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product__wishlist:hover {
  background-color: #f5f5f5;
}

/* Trust badges - Updated */
.product__trust-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.product__trust-badge {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
  gap: 8px;
}

.product__trust-badge svg {
  margin-right: 4px;
  color: #121212;
}

.product__accordion {
  margin-bottom: 30px;
}

.product__accordion-item {
  border-bottom: 1px solid #f0f0f0;
}

.product__accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.product__accordion-content {
  padding: 0 0 15px;
  display: none;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.product__accordion-button[aria-expanded="true"] + .product__accordion-content {
  display: block;
}

.product__related {
  margin-bottom: 80px;
  padding: 60px 0;
  background-color: #f9f9f9;
}

.product__related-title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
}

.product-grid--related {
  margin-bottom: 0;
}

.product-recommendations {
  margin-bottom: 80px;
  padding: 60px 0;
  background-color: #f9f9f9;
}

.product-recommendations__title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
}

/* Add these styles for product tags on product page */
.product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.product__tag {
  display: inline-block;
  padding: 5px 10px;
  background-color: #f5f5f5;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  transition: all 0.3s ease;
}

/* Tag-specific colors */
.product__tag--recovery {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.product__tag--performance {
  background-color: #e3f2fd;
  color: #1565c0;
}

.product__tag--anti_aging {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

.product__tag--anti_inflammatory {
  background-color: #fff3e0;
  color: #e65100;
}

.rating {
  display: flex;
}

.rating__star {
  color: #ffc107;
  margin-right: 2px;
}

.rating__star--empty {
  color: #ddd;
}

.footer {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer__block-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.footer__menu-item {
  margin-bottom: 10px;
}

.footer__menu-link {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer__menu-link:hover {
  opacity: 1;
}

.footer__bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
}

/* New styles for centered story text layout */
.story-text-centered {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.story-text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 30px;
}

.story-text-column {
  text-align: left;
}

@media screen and (max-width: 989px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-filter__wrapper {
    gap: 20px;
  }

  .product__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product__gallery {
    position: static;
  }

  .product__trust-badges {
    flex-direction: column;
    gap: 15px;
  }

  .story-text-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 749px) {
  .header__menu {
    display: none;
  }

  .hero {
    height: auto;
  }

  .product-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }

  .category-filter__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .collection__toolbar {
    flex-direction: column;
    gap: 15px;
