/** Shopify CDN: Minification failed

Line 393:10 Expected identifier but found whitespace
Line 393:16 Unexpected "1.4s"

**/
/* Base Grid Styles */
.product-grid {
  display: grid !important;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 20px !important;
}

.product-grid .grid__item {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Base Celebrity Content Styling (Applies globally) */
.celebrity-content-card {
  display: flex;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.celebrity-content-card .celebrity-image-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.celebrity-content-card .celebrity-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.celebrity-content-card .celebrity-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  width: 100% !important;
  background: transparent !important;
  bottom: 0;
  z-index: 2;
}

.celebrity-info h3 {
  letter-spacing: .48px;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #fff;
  margin-top: 0;
  margin-bottom: 1rem;
}

.celebrity-content-card .celebrity-info .celebrity-description {
  letter-spacing: .48px;
  text-transform: uppercase;
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #fff !important;
  margin-top: 0;
  margin-bottom: 2rem;
}

.celebrity-content-card .celebrity-info .celebrity-link {
  letter-spacing: .28px;
  text-transform: uppercase;
  text-underline-offset: .25rem;
  width: 100%;
  font-size: .875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5rem;
  text-decoration: underline;
  color: #fff !important;
  transition: all .25s ease-in;
}

.celebrity-content-card a.celebrity-link:hover {
  opacity: 0.7;
}

/* Large Desktop: > 1280px */
@media screen and (min-width: 1281px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: var(--grid-desktop-horizontal-spacing);
  }

}

/* Desktop/Tablet: 768px - 1280px */
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--grid-desktop-horizontal-spacing);
  }

  .product-grid .grid__item {
    grid-column: span 1 !important;
  }
}

/* Mobile: < 768px */
@media screen and (max-width: 767px) {

  /* .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--grid-mobile-horizontal-spacing);
  }
  .product-grid .grid__item {
    grid-column: span 1 !important;
  }
  .product-grid .grid__item.celebrity-image-block {
     grid-column: span 2 !important;
  } */
  #product-grid {
    display: flex !important;
    width: inherit;
  }

  #product-grid .grid__item {
    flex-basis: 50% !important;
    width: 50% !important;
  }

  #product-grid .grid__item .product-card-wrapper .card--media .card__content .card__information {
    max-width: inherit;
    width: inherit;
    padding: 10px 5px;
    overflow: hidden;
  }

  .celebrity-content-card {
    flex-direction: column;
  }

  .celebrity-content-card .celebrity-image-container {
    padding-bottom: 100%;
    /* Aspect ratio for mobile image */
  }
}

/* Load More Button Styles */
.load-more-container {
  margin-top: 4.5rem;
  margin-bottom: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.load-more-button {
  min-width: 220px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1.3rem;
  padding: 1.5rem 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.load-more-button:hover:not([disabled]) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.load-more-button:active:not([disabled]) {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.load-more-button.loading {
  cursor: not-allowed;
  pointer-events: none;
  background-color: var(--color-button-background-hover) !important;
  border-color: var(--color-button-background-hover) !important;
}

.load-more-spinner-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20px;
}

.load-more-spinner-wrapper .loading-spinner {
  width: 20px;
  height: 20px;
}

.load-more-spinner-wrapper .spinner {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  animation: rotate 1.4s linear infinite;
}

.load-more-spinner-wrapper .path {
  stroke: currentColor;
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite;
}

/* Hide fallback native pagination from UI, keeping it in DOM for SEO */
.hidden-load-more {
  display: none !important;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }

  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}

/* Custom Button Styles for Collection Two */
.card-product-two-wrapper .card-add-button {
  width: 100%;
}

.card-product-two-wrapper .card__badge {
  top: 10px;
  right: 10px;
  left: auto;
  bottom: auto;
}

.card-product-two-wrapper .custom-product-badge {
  top: 5px;
  right: 0px;
  left: auto;
  background: transparent;
  color: #000;
  font-size: 16px;
}


/* Custom Container for Collection Two */
.customContainer-two {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media screen and (min-width: 1701px) {
  .customContainer-two {
    max-width: 1800px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1700px) {
  .customContainer-two {
    max-width: 1440px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1440px) {
  .customContainer-two {
    max-width: 1280px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1280px) {
  .customContainer-two {
    max-width: 1024px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1024px) {
  .customContainer-two {
    max-width: 768px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .customContainer-two {
    max-width: 640px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 640px) {
  .customContainer-two {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 450px) {
  .customContainer-two {
    padding: 0 16px;
  }
}

/* Adjust mobile layout to still be 2 columns and remove flex override if it messes up */
@media screen and (max-width: 767px) {
  #product-grid {
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px !important;
  }

  #product-grid .grid__item {
    flex-basis: calc(50% - 7.5px) !important;
    width: calc(50% - 7.5px) !important;
  }
}

/* Specific Card Layout Styles */
.card-product-two-wrapper {
  background-color: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-product-two-wrapper .card__content {
  padding: 1.5rem !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-product-two-wrapper .card__information {
  padding: 0 !important;
  text-align: left;
}

.card-product-two-wrapper .card__heading {
  font-family: "Special Gothic", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 5px;
  line-height: 1.2;
}

.card-product-two-wrapper .caption-large.light {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  display: block;
}

animation: dash 1.4s ease-in-out infinite;
}

/* Hide fallback native pagination from UI, keeping it in DOM for SEO */
.hidden-load-more {
  display: none !important;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }

  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }

  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}

/* Custom Button Styles for Collection Two */
.card-product-two-wrapper .price-and-add-wrapper {
  justify-content: center !important;
}

.card-product-two-wrapper .card-add-button {
  width: 100%;
}

.card-product-two-wrapper .customBtn {
  width: 100%;
  border-radius: 50px;
  background-color: #000;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  padding: 12px 20px;
  font-family: "Special Gothic", sans-serif;
  letter-spacing: 0.05em;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.card-product-two-wrapper .customBtn:hover {
  opacity: 0.8;
}

.card-product-two-wrapper .card__badge {
  top: 10px;
  right: 10px;
  left: auto;
  bottom: auto;
}

.card-product-two-wrapper .custom-product-badge {
  top: 5px;
  right: 0px;
  left: auto;
  background: transparent;
  color: #000;
  font-size: 16px;
      letter-spacing: 2px !important;
    padding-left: 10px;
}


/* Custom Container for Collection Two */
.customContainer-two {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media screen and (min-width: 1701px) {
  .customContainer-two {
    max-width: 1800px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1700px) {
  .customContainer-two {
    max-width: 1440px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1440px) {
  .customContainer-two {
    max-width: 1280px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1280px) {
  .customContainer-two {
    max-width: 1024px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1024px) {
  .customContainer-two {
    max-width: 920px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 920px) {
  .customContainer-two {
    max-width: 767px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 640px) {
  .customContainer-two {
    max-width: 640px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 450px) {
  .customContainer-two {
    padding: 0 10px;
  }
}


/* Specific Card Layout Styles */
.card-product-two-wrapper .caption-large.light {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  display: block;
}

#product-grid-two .grid__item .product-card-wrapper .card--media .card__inner .card__media img {
  box-sizing: border-box;
  border: none;
  width: 0;
  min-width: 100%;
  max-width: 100%;
  height: 0;
  min-height: 100%;
  max-height: 100%;
  margin: auto;
  padding: 0;
  display: block;
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: 50%;
}

/* Override base.css grid borders */
.customContainer-two #product-grid {
  border: none !important;
}

.customContainer-two #product-grid .grid__item {
  border: none !important;
}

/* User Requested Merged Styles */
ul#product-grid-two .card-product-two-wrapper {
  background: #fff;
  border-radius: 0px;
  /* padding: 20px; */
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

ul#product-grid-two .card-product-two-wrapper .card__inner.color-scheme-2.gradient.ratio {
  background: #d3d3d378 !important;
}

ul#product-grid-two .card-product-two-wrapper .card__information {
  padding: 0 !important;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

ul#product-grid-two .card-product-two-wrapper .card__heading a,
ul#product-grid-two .card-product-two-wrapper .card__heading {
  font-family: "Special Gothic", sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

ul#product-grid-two .card-product-two-wrapper .varRating {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

ul#product-grid-two .card-product-two-wrapper .card__content {
  padding: 1.5rem !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

ul#product-grid-two .card-product-two-wrapper .card__inner.color-scheme-2.gradient.ratio .card__content {
  display: none;
}

.customContainer-two button.button.button--primary.button--small.customBtn:before,
.customContainer-two button.button.button--primary.button--small.customBtn:after {
  border: none !important;
  visibility: hidden !important;
  outline: none !important;
}

.customContainer-two button.button.button--primary.button--small.customBtn {
  width: 90% !important;
  margin: 0 auto;
  border-radius: 0px !important;
  border: 1px solid #111111 !important;
  padding: 12px !important;
  font-size: 22px !important;
  outline: none;
  line-height: 1.3;
}

/* Adjust mobile layout to still be 2 columns and remove flex override if it messes up */
@media screen and (max-width: 767px) {

  #product-grid-two {
    display: grid !important;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  ul#product-grid-two .card-product-two-wrapper .card__heading a,
  ul#product-grid-two .card-product-two-wrapper .card__heading {
    font-family: "Special Gothic", sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }

  .customContainer-two button.button.button--primary.button--small.customBtn {
    width: 90% !important;
    margin: 0 auto;
    border-radius: 0px !important;
    border: 1px solid #111111 !important;
    padding: 12px !important;
    font-size: 18px !important;
    outline: none;
    line-height: 1.3;
  }
}