:root {
  --z-modals: 400;
}

/* Colors */

.color-primary {
  color: var(--color-typography-primary);
}

.color-background-primary {
  background-color: var(--color-typography-primary);
}

.color-body {
  color: var(--color-typography-body);
}

.color-background-body {
  background-color: var(--color-typography-body);
}

.color-light {
  color: var(--color-typography-secondary);
}

.color-background-light {
  background-color: var(--color-typography-secondary);
}

.color-white {
  color: var(--color-typography-accent);
}

.color-background-white {
  background-color: var(--color-typography-accent);
}

.color-accent-background-light {
  color: var(--color-background-bg-1);
}

.color-accent-background-dark {
  color: var(--color-background-bg-2);
}

.accent-background-light {
  background-color: var(--color-background-bg-1);
}

.accent-background-dark {
  background-color: var(--color-background-bg-2);
}

/* base */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: var(--viewport-height, 100vh);
}

body {
  min-width: 32rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--color-background-body);
  font-size: 1.3rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  color: var(--color-typography-primary);
}

@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

p a {
  color: inherit;
}

.p1 {
  font-size: 1.6rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
}

.p2,
.rte,
.select select,
.product-quickview__rating .spr-summary-actions-togglereviews {
  font-size: 1.3rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
}

.p3 {
  font-size: 1rem;
  line-height: calc(1 + 0.4 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .p1--fixed {
    font-size: 1.6rem;
  }

  .p2,
  .rte {
    font-size: 1.6rem;
    line-height: calc(1 + 0.6 / var(--font-body-scale));
  }

  .p2--fixed,
  .product-quickview__rating .spr-summary-actions-togglereviews {
    font-size: 1.3rem;
    line-height: calc(1 + 0.6 / var(--font-body-scale));
  }

  .p3 {
    font-size: 1.3rem;
    line-height: calc(1 + 0.6 / var(--font-body-scale));
  }

  .p3--fixed {
    font-size: 1rem;
  }
}

.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

.no-js-inline {
  display: none !important;
}

html.no-js .no-js-inline {
  display: inline-block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

.container,
.shopify-challenge__container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.container--xs {
  max-width: 76.8rem;
}

.container--sm {
  max-width: 99.2rem;
}

@media screen and (min-width: 990px) {
  .container,
  .shopify-challenge__container {
    padding: 0 5.6rem;
  }

  .container--md {
    max-width: 121.6rem;
  }

  .container--md-left {
    padding: 0 5.6rem 0 16.8rem;
  }
}

.container--fullwidth {
  max-width: none;
}

.isolate {
  position: relative;
  z-index: 0;
}

.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}

/*
* Grid
* - 4 columns on mobile
* - 12 columns on desktop
*/

.grid:not(.splide.is-initialized.is-active .splide__list) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.6rem;
}

.grid__col--1:not(.splide.is-initialized.is-active .splide__slide) {
  grid-column: auto / span 1;
}

.grid__col--2:not(.splide.is-initialized.is-active .splide__slide) {
  grid-column: auto / span 2;
}

.grid__col--3:not(.splide.is-initialized.is-active .splide__slide) {
  grid-column: auto / span 3;
}

.grid__col--4:not(.splide.is-initialized.is-active .splide__slide) {
  grid-column: auto / span 4;
}

@media screen and (min-width: 990px) {
  .grid:not(.splide.is-initialized.is-active .splide__list) {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid__col--lg-1:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 1;
  }

  .grid__col--lg-2:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 2;
  }

  .grid__col--lg-3:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 3;
  }

  .grid__col--lg-4:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 4;
  }

  .grid__col--lg-5:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 5;
  }

  .grid__col--lg-6:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 6;
  }

  .grid__col--lg-7:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 7;
  }

  .grid__col--lg-8:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 8;
  }

  .grid__col--lg-9:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 9;
  }

  .grid__col--lg-10:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 10;
  }

  .grid__col--lg-11:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 11;
  }

  .grid__col--lg-12:not(.splide.is-initialized.is-active .splide__slide) {
    grid-column: auto / span 12;
  }
}

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

.hidden {
  display: none !important;
}

.hidden-mobile {
  display: none !important;
}

@media screen and (min-width: 750px) {
  .hidden-mobile {
    display: block !important;
  }

  .hidden-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .hidden-tablet {
    display: block !important;
  }

  .hidden-desktop {
    display: none !important;
  }
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden {
  overflow: hidden;
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}

.full-width-link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.underlined-link {
  color: var(--color-typography-primary);
  text-decoration: underline;
  text-underline-offset: .3rem;
  text-decoration-thickness: .1rem;
  transition: text-decoration-thickness ease .1s;
}

.underlined-link--no-offset {
  text-underline-offset: 0.1rem;
}

a.underlined-link:hover {
  color: var(--color-typography-primary);
  text-decoration-thickness: .2rem;
}

::selection {
  background-color: var(--color-typography-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
#shopify-product-reviews .spr-header-title,
#shopify-product-reviews .spr-form-title {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  word-break: break-word;
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 3.9rem);
  line-height: calc(1 + 0.2  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 6.1rem);
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 3.1rem);
  line-height: calc(1 + 0.2  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 4.9rem);
  }
}

h3,
.h3,
#shopify-product-reviews .spr-form-title {
  font-size: calc(var(--font-heading-scale) * 2.5rem);
  line-height: calc(1 + 0.3  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h3,
  .h3,
  #shopify-product-reviews .spr-form-title {
    font-size: calc(var(--font-heading-scale) * 3.9rem);
  }
}

h4,
.h4,
#shopify-product-reviews .spr-header-title {
  font-size: calc(var(--font-heading-scale) * 2rem);
  line-height: calc(1 + 0.3  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h4,
  .h4,
  #shopify-product-reviews .spr-header-title {
    font-size: calc(var(--font-heading-scale) * 3.1rem);
  }
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 2rem);
  line-height: calc(1 + 0.4  / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 2.5rem);
  }
}

h6,
.h6 {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
  line-height: calc(1 + 0.6  / max(1, var(--font-heading-scale)));
  font-weight: var(--font-body-weight);
  font-family: var(--font-body-family);
}

@media only screen and (min-width: 750px) {
  h6,
  .h6 {
    font-size: calc(var(--font-heading-scale) * 2rem);
  }
}

blockquote {
  border-left: 0.2rem solid var(--color-typography-secondary);
  padding-left: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote {
    padding-left: 1.5rem;
  }
}

.caption {
  font-size: 1rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .caption {
    font-size: 1.3rem;
  }
}

.caption--desktop {
  font-size: 1.3rem;
}

.caption--mobile {
  font-size: 1rem;
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem var(--color-typography-primary);
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid var(--color-typography-primary);
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium,
#shopify-product-reviews .spr-review-header-title,
strong {
  font-weight: 500;
}

.semi-bold {
  font-weight: 700;
}

.bold {
  font-weight: 600;
}

.capitalize {
  text-transform: capitalize;
}

.overflow-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

hr {
  border: none;
  height: 0.1rem;
  background-color: var(--color-border-1);
  display: block;
  margin: 4rem 0;
}

@media screen and (min-width: 750px) {
  hr {
    margin: 6rem 0;
  }
}

.unstyled-link {
  text-decoration: none;
  color: currentColor;
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}

details > * {
  box-sizing: border-box;
}

.break {
  word-break: break-word;
}

.visibility-hidden {
  visibility: hidden;
}

@media (prefers-reduced-motion) {
  .motion-reduce,
  .motion-reduce::before,
  .motion-reduce::after {
    transition: none !important;
    animation: none !important;
  }
}

:root {
  --duration-short: 150ms;
  --duration-default: 200ms;
  --duration-long: 400ms;
}

/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  height: 0.6rem;
  right: 1.5rem;
  top: calc(50% - 0.2rem);
}

summary::-webkit-details-marker {
  display: none;
}

details-disclosure {
  display: block;
}

.disclosure-has-popup {
  position: relative;
}

.disclosure-has-popup[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  cursor: default;
  content: ' ';
  background: rgba(0, 0, 0, 0.2);
}

.disclosure-has-popup > summary::before {
  display: none;
}

.disclosure-has-popup[open] > summary + * {
  position: relative;
  z-index: 100;
}

@media screen and (min-width: 750px) {
  .disclosure-has-popup[open] > summary + * {
    z-index: 4;
  }
}

.disclosure-has-popup--static {
  position: static;
}

/* base-focus */
/*
  Focus ring - default (with offset)
*/

*:focus {
  outline: 0;
  box-shadow: none;
}

*:focus-visible,
.focused,
.no-js *:focus {
  outline: 0.2rem solid var(--color-background-bg-2);
  outline-offset: 0.3rem;
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - inset
*/

.focus-inset:focus-visible {
  outline: 0.2rem solid currentColor;
}

.focused.focus-inset,
.no-js .focus-inset:focus {
  outline: 0.2rem solid currentColor;
}

.no-js .focus-inset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - none
*/

/* Dangerous for a11y - Use with care */
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

.focus-offset:focus-visible {
  outline: 0.2rem solid var(--color-background-bg-2);
  outline-offset: 1rem;
}

.focus-offset.focused,
.no-js .focus-offset:focus {
  outline: 0.2rem solid var(--color-background-bg-2);
  outline-offset: 1rem;
}

.no-js .focus-offset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/* component-media */
.media {
  display: block;
  background-color: var(--color-background-images);
  position: relative;
  overflow: hidden;
}

.media--transparent {
  background-color: transparent;
}

.media > img,
.media > noscript > img,
.media > svg {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.media img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.media--no-transition img {
  transition: none;
}

.media--fit-position-top img {
  object-position: top center;
}

.media--fit-position-bottom img {
  object-position: bottom center;
}

.media--1-1 {
  padding-bottom: 100%;
}

.media--3-4 {
  padding-bottom: 133.33%;
}

.media--2-3 {
  padding-bottom: 150%;
}

.media--4-3 {
  padding-bottom: 75%;
}

.media--3-1 {
  padding-bottom: 33.33%;
}

.media--3-2 {
  padding-bottom: 66.66%;
}

.media--16-9 {
  padding-bottom: 56.25%;
}

.media--viewport-height {
  padding-bottom: 100vh;
}

.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.media.has-hover [data-secondary-image] {
  display: none;
}

.media.has-hover-disabled [data-secondary-image],
.media.has-hover [data-secondary-image] {
  display: none;
}

@media screen and (min-width: 990px) {
  .media.has-hover [data-secondary-image] {
    display: block;
    opacity: 0;
    visibility: hidden;
  }

  .media.has-hover:hover [data-primary-image],
  .product-card:hover .media.has-hover [data-primary-image] {
    opacity: 0;
    visibility: hidden;
  }

  .media.has-hover:hover [data-secondary-image],
  .product-card:hover .media.has-hover [data-secondary-image] {
    opacity: 1;
    visibility: visible;
  }
}

.media .lazyload,
.media .lazyloading {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.2);
}

.media .lazyloaded {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

deferred-media {
  display: block;
}

.media--static {
  height: var(--viewport-height, 100vh);
}

.media.media--static > img,
.media.media--static > noscript > img,
.media.media--static > svg {
  object-fit: contain;
}

/* Button component */

.shopify-payment-button__button--unbranded {
  animation: none !important;
}

.button,
#shopify-product-reviews .spr-button,
.shopify-payment-button__button--unbranded {
  min-width: 19.9rem;
  height: 4.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 2.4rem;
  cursor: pointer;
  font: inherit;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-buttons-primary-text);
  transition: all var(--duration-long) ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-buttons-primary);
  border: none;
  border-radius: var(--buttons-border-width);
  position: relative;
  overflow: hidden;
}

.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background-color: var(--color-buttons-primary) !important;
}

.button::before,
#shopify-product-reviews .spr-button::before,
.shopify-payment-button__button--unbranded::before {
  content: '';
  background-color: #fff;
  opacity: 0.2;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: width var(--duration-long) ease-in-out;
}

.button .button__text {
  position: relative;
  z-index: 2;
}

.button > svg {
  width: 0.7rem;
  height: 1.3rem;
  margin-left: 1.65rem;
  position: relative;
  z-index: 2;
}

.button.is-loading > * {
  opacity: 0;
  visibility: hidden;
}

.button.is-loading::after {
  content: '';
  width: 3rem;
  height: 3rem;
  border: 0.3rem solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  animation: loader-spin 0.5s linear infinite;
}

@keyframes loader-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media screen and (min-width: 750px) {
  .button,
  #shopify-product-reviews .spr-button,
  .shopify-payment-button__button--unbranded {
    min-width: 21.3rem;
    height: 5rem;
    padding: 0 2.4rem;
    font-size: 1.6rem;
  }

  .shopify-payment-button__button--unbranded,
  .button--small {
    font-size: 1.3rem;
  }

  .button:not(.button:disabled):hover::before,
  #shopify-product-reviews .spr-button:not(:disabled):hover::before,
  .shopify-payment-button__button--unbranded:hover:not([disabled])::before {
    width: 100%;
  }

  .button--secondary:hover {
    background-color: var(--color-typography-primary);
    color: var(--color-typography-accent);
  }

  .button--secondary:hover::before {
    display: none;
  }

  .button > svg {
    width: 0.8em;
    height: 1.6rem;
  }
}

.button--medium {
  font-size: 1rem;
  min-width: 12rem;
  height: 3.5rem;
  padding: 0 1.55rem;
}

.button--medium > svg {
  width: 0.7rem;
  height: 1.3rem;
}

.button--chevron {
  padding: 1.2rem 2.4rem;
  height: 4.8rem;
}

.button--chevron > svg {
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: .8rem;
  height: 1.4rem;
  margin: -.2rem .4rem 0 1.6rem;
}

.button--secondary {
  background-color: var(--color-buttons-secondary);
  color: var(--color-buttons-secondary-text);
  border: 0.1rem solid var(--color-border-1);
}

@media screen and (min-width: 750px) {
  .button--medium {
    font-size: 1.3rem;
    height: 4.7rem;
    padding: 0 1.6rem;
    min-width: 14rem;
  }
}

/* Button - other */

.button:disabled,
.button[aria-disabled='true'],
.button.disabled,
.button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.button-link,
.spr-summary-actions-newreview {
  display: inline-block;
  border: 0;
  padding: 0 0 0.5rem;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  text-decoration: none;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
}

.button-link::after,
.spr-summary-actions-newreview::after {
  content: '';
  width: 100%;
  height: 0.1rem;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  transition: width var(--duration-long) ease-in-out;
}

.button-link--back {
  display: inline-block;
  position: relative;
  padding-left: 3rem;
}

.button-link--back span {
  position: absolute;
  left: 0;
  top: 0.1rem;
}

.button-link--back:after {
  display: none;
}

@media screen and (min-width: 750px) {
  .button-link,
  .spr-summary-actions-newreview {
    font-size: 1.6rem;
  }

  .button-link:hover::after,
  .spr-summary-actions-newreview:hover::after {
    width: 35%;
  }

  .button-link--back {
    padding-left: 3.7rem;
  }
}

.button-link--medium {
  font-size: 1.3rem;
}

.button-link--full-width {
  display: block;
  width: 100%;
}

.button-arrow,
.button-icon {
  color: var(--color-buttons-primary-text);
  background-color: var(--color-buttons-primary);
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 990px) {
  .button-arrow:hover,
  .button-arrow:focus-visible,
  .button-icon:hover,
  .button-icon:focus-visible {
    opacity: 0.6;
  }
}

.button-arrow svg {
  width: 1.1rem;
  height: 2rem;
  pointer-events: none;
}

.button-arrow--large {
  width: 5rem;
  height: 5rem;
}

@media screen and (min-width: 990px) {
  .button-arrow--large {
    width: 6rem;
    height: 6rem;
  }
}

.button-arrow--medium {
  width: 4rem;
  height: 4rem;
}

.button-arrow--small {
  width: 3.2rem;
  height: 3.2rem;
}

.button-arrow--large svg,
.button-arrow--medium svg,
.button-arrow--small svg {
  width: 0.9rem;
  height: 1.5rem;
}

@media screen and (min-width: 990px) {
  .button-arrow--large svg {
    width: 1.1rem;
    height: 2.1rem;
  }
}

.button-arrow--transparent,
.button-icon--transparent {
  color: inherit;
  background-color: transparent;
  position: relative;
}

.button-arrow--left svg {
  transform: rotate(180deg);
}

.button-arrow--transparent::before,
.button-icon--transparent::before {
  content: '';
  width: 100%;
  height: 100%;
  border: 0.1rem solid currentColor;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.button-back {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.button-back__icon {
  margin-right: 2rem;
  line-height: 0;
  will-change: transform;
  transition: transform .3s;
}

.button-back:hover .button-back__icon {
  transform: translateX(-.4rem);
}

/* component-modal */
.modal__toggle {
  list-style-type: none;
}

.no-js details[open] .modal__toggle {
  position: absolute;
  z-index: 5;
}

.modal__toggle-close {
  display: none;
}

.no-js details[open] svg.modal__toggle-close {
  display: flex;
  z-index: 1;
  height: 1.7rem;
  width: 1.7rem;
}

.modal__toggle-open {
  display: flex;
}

.no-js details[open] .modal__toggle-open {
  display: none;
}

.no-js .modal__close-button.link {
  display: none;
}

.modal__close-button.link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  height: 4.4rem;
  width: 4.4rem;
  background-color: transparent;
}

.modal__close-button .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--color-background));
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-modal {
  cursor: zoom-out;
}

.media-modal .deferred-media {
  cursor: initial;
}

.overflow-hidden-mobile,
.overflow-hidden-tablet {
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .overflow-hidden-mobile {
    overflow: auto;
  }
}

@media screen and (min-width: 990px) {
  .overflow-hidden-tablet {
    overflow: auto;
  }
}

/*
 *
 * Form elements
 *
*/

input {
  font-family: inherit;
}

/* Button */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: border-box;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Search input */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

/*  Quantity  */
.quantity {
  position: relative;
  max-width: 10rem;
  display: block;
}

.quantity__input {
  appearance: textfield;
  -webkit-appearance: none;
  height: 4rem;
  width: 10rem;
  border: 1px solid var(--color-border-1);
  padding: 0 2.5rem;
  background: var(--color-background-elements);
  font-size: 1.6rem;
  color: var(--color-typography-primary);
  text-align: center;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.quantity__input:focus,
.quantity__input:focus-visible,
.quantity__input.focused {
  outline: 0;
  border-color: var(--color-typography-primary);
}

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

.quantity__button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.quantity__button:hover svg {
  transform: scale(1.1);
}

.quantity__button > * {
  pointer-events: none;
}

.quantity__button[name="minus"] {
  left: 0;
}

.quantity__button[name="minus"] svg {
  width: .93rem;
}

.quantity__button[name="plus"] {
  right: 0;
}

.quantity__button[name="plus"] svg {
  width: .93rem;
}

/* Animations */
[data-fade-in] {
  opacity: 0;
  transform: translateY(5rem);
}

.fade-in {
  animation: fade-in 0.8s 0.4s forwards;
}

.fade-in-down {
  animation: fade-in-down 0.8s 0.4s forwards;
}

.fade-out {
  animation: fade-out 0.8s 0.4s forwards;
}

.fade-out-up {
  animation: fade-out-up 0.8s 0.4s forwards;
}

.fade-in-simple {
  animation: fade-in-simple 0.8s 0.4s forwards;
}

.fade-out-simple {
  animation: fade-out-simple 0.8s 0.4s forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(5rem);
  }
}

@keyframes fade-out-up {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-5rem);
  }
}

@keyframes fade-in-simple {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-out-simple {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Splide slider */
.splide .splide__slide {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.splide * {
  will-change: transform;
}

.no-js .splide {
  visibility: visible;
}

.no-js .splide__list {
  display: block;
}

/*  Checkboxes  */
.checkbox:after {
  content: '';
  display: table;
  line-height: 0;
  clear: both;
}

input[type="checkbox"] {
  position: relative;
  float: left;
  box-sizing: border-box;
  border: 1px solid var(--color-border-2);
  margin: 0;
  padding: 0;
  width: 2rem;
  height: 2rem;
  background: var(--color-background-elements);
  appearance: none;
  -webkit-appearance: none;
  vertical-align: top;
}

input[type="checkbox"]:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: .6rem;
  width: 1.1rem;
  margin-top: -.1rem;
  border-top: .2rem solid var(--color-background-bg-2);
  border-right: .2rem solid var(--color-background-bg-2);
  transform: translate(-50%, -50%) rotate(135deg);
  opacity: 0;
  visibility: hidden;
}

input[type="checkbox"] + label {
  float: left;
  width: calc(100% - 2rem);
  padding-left: .8rem;
}

input[type="checkbox"] + label a {
  color: inherit;
  text-underline-offset: .2rem;
}

input[type="checkbox"] + label a:hover {
  text-decoration-thickness: .2rem;
}

input[type="checkbox"]:checked:before {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 750px) {
  input[type="checkbox"] {
    margin: .3rem 0;
  }
}

/*  Textarea  */
.text-area {
  border: .1rem solid var(--color-border-1);
  padding: 1.1rem;
  width: 100%;
  min-height: 12rem;
  display: block;
  background: var(--color-background-elements);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  resize: none;
}

.text-area:focus-visible,
.text-area.focused {
  outline-offset: 0;
}

.text-area.field__input {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  height: 12rem;
}

.shopify-policy__body .rte {
  margin-bottom: 3.2rem;
}

@media screen and (min-width: 990px) {
  .shopify-policy__body .rte {
    margin-bottom: 6.4rem;
  }
}

.rte a {
  color: inherit;
}

.rte p {
  margin: 0;
}

.rte p + p {
  margin-top: 2.4rem;
}

.rte img {
  max-width: 100%;
}

.rte blockquote {
  margin: 3.2rem 4rem 3.2rem 3rem;
}

@media screen and (min-width: 990px) {
  .rte {
    color: var(--color-typography-body);
  }

  .rte h1,
  .rte h2,
  .rte h3,
  .rte h4,
  .rte h5,
  .rte h6,
  .rte blockquote {
    color: var(--color-typography-primary);
  }
}

.select {
  min-width: 16.5rem;
  position: relative;
  z-index: 1;
}

.select select {
  color: var(--color-typography-primary);
  background-color: var(--color-background-elements);
  font: inherit;
  display: block;
  width: 100%;
  height: 4.8rem;
  padding: 0 3.7rem 0 1.6rem;
  border: 0.1rem solid var(--color-border-1);
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.select select:invalid {
  color: var(--color-typography-body);
}

.select select::-ms-expand {
  display: none;
}

.select svg {
  width: 2rem;
  height: 1.4rem;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.15rem;
  z-index: 1;
  transform: rotate(90deg);
  pointer-events: none;
}

@media screen and (min-width: 1200px) {
  .select {
    min-width: 19.5rem;
  }
}

/* Form Components */
.form__message {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}

.form__message svg {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.field .form__message svg {
  align-self: start;
}

.field__label,
.spr-form-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.6rem;
}

.field__input,
.spr-form-input-text,
.spr-form-input-email,
.spr-form-input-textarea {
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-background-elements);
  color: var(--color-typography-primary);
  font-family: inherit;
  font-size: 1.6rem;
  width: 100%;
  border-radius: 0;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  height: 4.8rem;
  position: relative;
  border: 0.1rem solid var( --color-typography-secondary );
  padding: 0 1.5rem;
}

.spr-form-input-textarea {
  padding: 1.5rem;
}

.form__row {
  margin-bottom: 2.5rem;
}

.form__row:last-child {
  margin-bottom: 0;
}

.form__row.double > * {
  margin-bottom: 2.5rem;
}

.form__row.double > *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 990px) {
  .form__row.double {
    display: flex;
    justify-content: space-between;
  }

  .form__row.double > * {
    width: calc(50% - 0.8rem);
    margin: 0;
  }
}

.form__errors a {
  text-decoration: none;
  color: var(--color-typography-primary);
}

.radio {
  display: block;
}

.radio label {
  display: block;
  padding-left: 2.8rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.radio label::before {
  content: '';
  background-color: var(--color-background-elements);
  width: 1.6rem;
  height: 1.6rem;
  border: 0.1rem solid var(--color-border-2);
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: -0.2rem;
  left: 0;
  bottom: 0;
  z-index: 1;
  box-shadow: none;
  transition: box-shadow var(--duration-short);
}

.radio input:checked + label::before {
  box-shadow: inset 0 0 0 2px white;
  background-color: var(--color-background-bg-2);
}

.localization-opener__button {
  display: flex;
  align-items: center;
}

.localization-opener__button svg {
  margin-left: 2rem;
}

.localization-opener__image {
  width: 2.1rem;
  margin-right: 0.8rem;
}

/*custom*/
img{max-width:100%}
.common-btn{background:url('https://cdn.shopify.com/s/files/1/1123/0638/t/37/assets/button_bg.png?v=1667419530') no-repeat center center; min-width:260px;display:inline-block; color:#fff !important; padding:20px 30px; font-size:20px; text-align:center; font-weight:300 !important; text-decoration:none !important;}
.home-banner img{width:100%; display:block;}
.slick-dots{margin:0; padding: 0; list-style: none; display: flex; justify-content: center; align-items: center;}
.slick-dots li{padding: 0 5px;}
.slick-dots li button{display: block; width: 10px; height: 10px; background-color: #fff; border-radius: 50%; font-size: 0;}
.slick-dots li.slick-active button{background-color: #ffe8e9;}
.home-banner .slick-dots{position: absolute; bottom: 20px; left: 0; right: 0; z-index: 1;}
.richtext{background:#f7f5f0; }
.richtext .richtext__inner{max-width:1212px;}
.featured-on-brands{background-color:#ffe8e9; padding: 50px 0;}
.featured-on-brands .container{display:flex; flex-wrap:wrap; justify-content:center;}
.featured-on-brands .container h3{width:100%; margin:0; margin-bottom:30px;text-align:center; color:#7f7474 }
.featured-on-brands .container figure{ width:25%; margin:0; margin-bottom:30px; text-align:center;}
.featured-on-brands .container figure:first-child{text-align:left;}
.featured-on-brands .container figure:last-child{text-align:right;}

.extra-info{padding:129px 0;}
.extra-info ul{list-style:none; display:flex; flex-wrap:wrap;}
.extra-info ul li{width:25%; text-align:center; font-size:20px;font-weight:700;}
.extra-info ul li img{margin:0 auto;}
.extra-info ul li span{display:block; max-width:190px; margin:0 auto;}


.home-categories{padding:85px 0;}
.home-categories h2{font-weight:400;}
.home-categories .h6 p,
.home-categories .h6{margin-top:0; font-size:30px; margin-bottom:55px;}
.home-categories .category-grid .category-box{}
.home-categories .mob-category{display:none;}
.home-categories .category-grid .category-box a{border:solid 1px #edeae7; position:relative; vertical-align:text-top; padding-bottom:15px; display:flex; flex-flow:column-reverse; text-decoration:none; width:100%;  height:100% ;  font-size:19px; font-weight:600; color:#101116; text-align:center;}

.home-categories .category-grid a img{display:block; margin:0 auto; width:100%; height:100%;}
.home-categories .category-grid .category-box:nth-child(2) a,
.home-categories .category-grid .category-box:nth-child(7) a{ border:none; padding-bottom:0;}
.home-categories .category-grid .category-box:nth-child(2) span,
.home-categories .category-grid .category-box:nth-child(7) span{position:absolute; top:5%; left:5%;}
.home-categories .category-grid{display: grid; margin-bottom:50px; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); grid-column-gap: 15px; grid-row-gap: 15px;}

.home-categories .category-grid .category-box:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.home-categories .category-grid .category-box:nth-child(2) { grid-area: 1 / 2 / 3 / 4; }
.home-categories .category-grid .category-box:nth-child(3) { grid-area: 1 / 4 / 2 / 5; }
.home-categories .category-grid .category-box:nth-child(4) { grid-area: 2 / 1 / 3 / 2; }
.home-categories .category-grid .category-box:nth-child(5) { grid-area: 2 / 4 / 3 / 5; }
.home-categories .category-grid .category-box:nth-child(6) { grid-area: 3 / 1 / 4 / 2; }
.home-categories .category-grid .category-box:nth-child(7) { grid-area: 3 / 2 / 4 / 4; }
.home-categories .category-grid .category-box:nth-child(8) { grid-area: 3 / 4 / 4 / 5; }

.content-with-image-sec{overflow:hidden;}
.content-with-image-sec .flex-row{display:flex; flex-wrap:wrap;}
.content-with-image-sec .half-col{width:50%;}
.content-with-image-sec .img-col img{height:100%; width:100%; object-fit:cover; object-position:top enter}
.content-with-image-sec .content-col{background:#f7f5f0; padding:130px 130px;}
.content-with-image-sec .content-col .h6{font-size:18px; font-weight:600; margin-bottom:30px;}
.content-with-image-sec .content-col .content{font-size:36px; line-height:40px; font-weight:600; margin-bottom:30px;}
.content-with-image-sec .content-col .icon-box-list{display:flex; flex-wrap:wrap; justify-content:space-between; max-width:500px; margin-bottom:50px;}
.content-with-image-sec .content-col .icon-box-list .icon-box{width:49%; text-align:center; font-size:18px; font-weight:600; margin-bottom:30px;display:flex; flex-flow:column;} 
.content-with-image-sec .content-col .icon-box-list .icon-box img{width:max-content; margin:0 auto 15px;}

 p.small_font{font-size:16px;}
.our-story-banner{padding:85px 0;}
.our-story-banner h1 span{font-size:34px; line-height:45px; display:block;}

.story-sec{background:#e2e2e2; padding-top:85px;}
.flex-row{flex-wrap:wrap; display:flex; justify-content:space-between;}
.one-third{width:32%;}
.one-fourth{width:24%; padding-top:20px;}
.story-sec .flex-row{align-items:center;}
.story-sec .img-col{width:30%; }
.story-sec .img-col img{display:block;}
.story-sec .content-col{width:65%; font-size:21px; line-height:31px }

.certified-sec{padding:85px 0 85px;}
.certified-sec img{margin-bottom:20px;}

.manifesto-sec{padding-top:60px; background:#efece9;}
.manifesto-list {padding:20px 0 0; justify-content:center;}
.manifesto-list .manifesto{ width:calc(20% - 15px); margin:0 7.5px 95px;}
.manifesto-list .manifesto figure{height:175px; width:100%; margin:0; background:#fff; display:flex; justify-content:center; align-items:center;}
.manifesto-list .manifesto h6{font-size:13px; font-weight:600; text-align:center; margin:15px 0;} 
.vegan-sec{padding:60px 0; font-size:16px;} 

.history-sec{background-color:#000; color:#fff;}
.history-sec .intro-sec{padding:80px 15px; font-size:21px;}
.history-row{border-top:solid 1px rgba(255,255,255,0.8); padding:50px 0;}
.history-row .flex-row{align-items:flex-start;}
.history-row .flex-row .year-col{width:33%;}
.history-row .flex-row .year-col span{background: rgb(235,57,103);
background: linear-gradient(90deg, rgba(235,57,103,1) 35%, rgba(251,113,145,1) 100%); color:#fff; font-weight:700; font-size:51px; padding:20px; display:inline-block;}
.history-row .flex-row .content-col{width:66%;}
.history-row .flex-row .content-col .flex-row{justify-content:flex-start;}
.history-row .flex-row .history-item{width:100%; display:flex; flex-wrap:wrap; margin-bottom:50px;}
.history-row .flex-row .history-item:last-child{margin-bottom:0;}
.history-row .flex-row .history-item figure{width:100px; margin:0; margin-right:40px;}
.history-row .flex-row .history-item h6{font-size:13px; margin:0; align-self:center; width:calc(100% - 140px); text-transform:uppercase;}

/*Designer Page Css*/
.no_after:after{display:none;}
.img-content-sec .container,
.designer-page .container{max-width:981px;}
.designer-page p{font-size:20px;}

.designer-page p.small_font{font-size:16px;}
.intro-sec,
.press-intro-sec,
.video-sec,
.designer-intro-sec{padding:80px 0; position:relative;}

.designer-intro-sec img{margin:20px 0;}
.video-sec:after,
.intro-sec:after,
.designer-intro-sec:after{background:#f7f5f0; z-index:-1; position:absolute; top:0; left:0; width:100%; height:50%; max-height:560px;content:'';}
.sustainability-page h1, .sustainability-page h2,.sustainability-page h3,.sustainability-page h4,.sustainability-page h5,.sustainability-page h6,
.we-give-page h1,.we-give-page h2,.we-give-page h3,.we-give-page h4,.we-give-page h5,.we-give-page h6,
.press-page h1,
.press-page h2,
.press-page h5,
.press-page h3,
.press-page h6,
.designer-page h1,
.designer-page h2{margin: 0 0 20px;}
.video-sec iframe{padding:45px 0 60px;}
.img-content-sec .flex-row{padding:50px 0; align-items:center;}
.img-content-sec .flex-row.flex-reverse{flex-flow:row-reverse;}
.img-content-sec .content-col{padding:50px 20px 50px 50px; width:48%; max-width:400px;}
.img-content-sec .flex-reverse .content-col{padding:50px 50px 50px 20px; }
.img-content-sec .content-col .year{background:url('https://cdn.shopify.com/s/files/1/1123/0638/t/37/assets/button_bg.png?v=1667419530') no-repeat center center; margin-bottom:20px; border-radius:40px; background-size:cover; min-width:120px;display:inline-block; color:#fff !important; padding:20px 30px; font-size:26px; font-weight:600; }
.img-content-sec .img-col{width:48%;  max-width:max-content;}

.press-intro-sec .featured-on-brands{background:#e6e2d9;}
.tabbing-section .tab-list{border-bottom:solid 3px #000; padding:0 15px; display:flex; justify-content:center; flex-wrap:wrap;}
.tabbing-section .tab-list .tab-item{ padding:14px 25px; text-decoration:none; font-weight:600; color:#929292; background:#e5e5e5; font-size:17px; }
.tabbing-section .tab-list .tab-item:hover,
.tabbing-section .tab-list .tab-item.active{background:#000; color:#fff;}
.tabbing-section .tab-content{display:none; padding:80px 0;}
.tabbing-section .tab-content.active{display:block;}
.press-page figure{margin:0 0 20px; }

.press_video.video-sec iframe{padding-bottom:0px;}
.blog-sec{padding-bottom:80px;}
.blog-sec img{width:100%; display:block;}
.blog-sec figure{width:100%;}
.template--press-magazine .tab-content[data-tab="tab2"] .img-content-sec .flex-row{padding:10px 0;}
.netflix-sec .two-third{width:65%;}
.netflix-sec .container-fluid{max-width:1400px; margin:0 auto; padding:0 15px;}
.movie-sec:nth-child(odd){background:#f7f5f0;}
#shopify-section-template--14574412791874__6be36c4b-8f75-4da0-b277-531872ab223c .movie-sec{background:#fff;}
.movie-sec .flex-row{align-items:center;}
.movie-sec .logo{width:33%;}
.movie-sec .img{width:25%; text-align:center}
.movie-sec .content{width:33%;}
.press_image_content.img-content-sec .content-col{padding:20px 20px;}

/*Footer Css*/
.footer__main{background-color:#efece9; padding: 0;}
.footer__main .four-fifth{width:80%; margin-bottom:30px;}
.footer__main .one-fifth{width:18%;}
.footer__main .one-fifth figure{text-align:center; margin:0;}
.footer__main .one-fifth figure:first-child{margin-bottom:70px;}
.footer__main .four-fifth h5{margin:0 0 20px; font-size:16px; color:#101116; font-weight:700;} 
.footer__main .four-fifth h5 span{font-weight:var(--font-body-weight); font-size:13px; font-family:var(--font-body-family); display:block}
.footer__main .four-fifth ul{padding:0 0; margin:0 0;}
.footer__main .four-fifth li {margin:0 0 10px; list-style:none; font-size:12px; color:#101116; font-weight:500;}
.footer__main .four-fifth li a{color:#101116; text-decoration:none; display:inline-flex; align-items:center;}
.footer__main .four-fifth .copyright-row{flex-wrap:wrap-reverse; margin-top:50px}
.footer__main .four-fifth .copyright-row figure{width:100px; margin:0;}
.footer__main .four-fifth .copyright-row ul{display:inline-flex; flex-wrap:wrap;align-items:center; width:calc(100% - 120px); }
.footer__main .four-fifth .copyright-row ul li{padding:0px 10px; margin:5px 0 5px; font-weight:400; border-right:solid 1px #101116;}
.footer__main .four-fifth .copyright-row ul li:last-child{border-right:none;}
.footer__main .four-fifth .copyright-row ul li:first-child{padding-left:0;}

.intro-sec img{margin:0 0 40px;}
.single-row{padding:80px 0;}
.single-row.with-bg{background:#f7f5f0;}
.single-row.fullwidth .one-third{width:33.33%}
.single-row .img-col{max-width:320px;}
.single-row.fullwidth .one-third figure{height:100%; margin:0 0 0 ;}
.single-row .img-col figure{margin:0 0 20px 0;}
.single-row.fullwidth .one-third figure img{height:100%; object-fit:cover;  width:100%;}
.single-row .img-col figure img{width:100%;}

/*Sustainability Page*/
.sustainable-intro-sec{padding:80px 0 0;}
.sustainable-intro-sec h1{font-weight:400;      font-family: inherit;}
.sustainable-intro-sec img{margin-top:30px; width:100%; display:block;}

.commitment-sec{background:#f7f5f0; padding:80px 0 0;}
.commitment-sec .left-col{width:48%;}
.commitment-sec .left-col img{display:block;}
.commitment-sec .left-col span{display:block; font-size:34px;}
.commitment-sec .right-col{width:48%; padding-bottom:80px;}

.sustainable-tabbing .tab-list .tab-item{paddding:10px 0; margin:0 10px; background:transparent; color:#000;}
.sustainable-tabbing .tab-list .tab-item.:hover,
.sustainable-tabbing .tab-list .tab-item.active{border-bottom:solid 2px #000; background:transparent; color:#000;}

.content-with-image-sec.background_img{background:url('https://cdn.shopify.com/s/files/1/1123/0638/t/37/assets/bg_img.jpg?v=1668611849')no-repeat right top; background-size:cover;}
.content-with-image-sec.background_img .content-col{background:transparent;}

.sourcing-sec{padding:80px 0; background:#efece9;}
.sourcing-sec .source-list{margin-top:40px; justify-content:space-around;}
.sourcing-sec .source-list .one-fifth{width:19%; margin-bottom:40px}
.sourcing-sec .source-list .one-fifth figure{margin:0 0 20px;}
.sourcing-sec .source-list .one-fifth figure img{width:100%;}
.sourcing-sec .source-list .one-fifth h6{font-size:16px; font-weight:600; margin:10px 0}
.sourcing-sec .source-list .one-fifth pfont-size:14px;}
.counter_row .counter_item{width:48%;}
.counter_row .counter_item strong{font-weight:700}
.counter_row .counter_item:first-child{border-right:solid 1px #ccc;}


/*New Banner*/
.section-pd{padding:80px 0;}
.white-text{color:#fff;}
.banner{position:relative; width:100%; padding:80px 0; background-size:contain !important;}
.banner:before{z-index:90; position:absolute; background:url('https://cdn.shopify.com/s/files/1/1123/0638/t/37/assets/blackbg.png?v=1669054038')no-repeat right center; background-size:cover; width:61%; content:''; height:100%; left:0; top:0;}
.banner:after{width:50%; height:100%; position:absolute; left:0; top:0; content:''; box-shadow:0 0 7px rgba(0,0,0,0.35); z-index:99;}
.banner .container{z-index:999; position:relative;}
.banner .mob_img{display:none;}
.banner .banner_text{max-width:450px;}

/*Celebrity Sec*/
.slick-track{display:flex !important;}
.slick-track .slick-slide{height:inherit;}
.slick-track .slick-slide >div{height:100%;}
.celebrity-sec{padding-top:0;}
.celebrity-sec .flex-row{align-items:center;}
.celebrity-sec .review{font-size:24px; max-width:600px;}
.celebrity-sec .img{height:100%;}
.celebrity-sec img{display:block; height:100%; object-fit:cover;width:100%;}
.celebrity-sec .quote_icon{height:auto; width:auto; object-fit:inherit;}
.category_slider_sec .category-col{width:50%;}
.category_slider_sec .base{padding:20px 130px 20px 20px;}
.category_slider_sec .slick-arrow{position:absolute; width:100%; right:30px; bottom:-70px; width:40px; height:40px; border-radius:50%; background:#AC9377; font-size:0; }
.category_slider_sec .slick-arrow:after{position:absolute; left:55%; width:12px; height:12px;  border-style:solid; top:50%; transform:translate(-50%, -50%);  content:''; z-index:99; border-width: 10px 0px 10px 13px;   border-color: transparent transparent transparent #fff;}
.category_slider_sec .slick-arrow.slick-next{transform:scale(-1); right:80px;}
.review-slider .slick-dots,
.category_slider_sec .slick-dots{list-style:none; position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; justify-content:center;}
.review-slider .slick-dots button,
.category_slider_sec .slick-dots button{width:8px; height:8px; border-radius:50%; margin:0 0px; background:rgba(255,255,255,0.8);}
.category_slider_sec .slick-dots .slick-active button{background:#AC9377;}
.review-slider .slick-dots{justify-content:flex-start;}
.review-slider .slick-dots button{background:rgba(0,0,0,0.6);}
.review-slider .slick-dots .slick-active button{background:#000;}

/*Manufacturing Page*/
.manufac-image{position:relative;}
.manufac-image img{width:100%; display:block;}
.manufac-image .manufac-heading{position:absolute; top:50%; left:0; right:0; transform:translate(0, -50%); z-index:99; padding: 0 20px; color:#fff; text-align: center;}
.manufac-image .manufac-heading h4{font-weight:700; font-size:24px; margin:0;}
.manu-chart{background:#efece9; padding:40px 0;}
.manu-chart .container{max-width:1000px;}
.manu-chart .fullwidth-image{padding:40px 0; border-top:solid 1px #fff; border-bottom:solid 1px #fff;}
.img-content-sec.with_bg{background:#efece9; }
.template--manufacturing .single-row .flex-row{margin-top:40px;} 
.template--manufacturing .single-row .small_font{max-width:1000px; margin:0 auto 20px;}
.template--manufacturing .single-row .flex-row h5{margin:15px 0;}
.template-manufacturing .content-with-image-sec .content{max-width:500px;}
.template-manufacturing .img-content-sec{padding:10px 0;}
.manufacturing-collection{background:#f6e4da; padding-top:80px;}

.manufacturing-collection .container{max-width:900px;}
.manufacturing-collection h2{font-weight:600; margin-bottom:30px;}
.manufacturing-collection .btn-box{margin-bottom:60px;}
.manufacturing-collection img{width:100%; display:block;}

.pr-landing-intro{background:url('https://cdn.shopify.com/s/files/1/1123/0638/t/37/assets/Bg_splash.png?v=1670952881') no-repeat center top; background-size:45% auto; }  
.template--product-landing h2,
.template--product-landing h1{margin:10px 0 10px; padding-top:0px;}
.template--product-landing p{margin:0 0 20px;}
.pr-landing-intro .container{max-width:1200px;}
.pr-landing-intro h1,
.pr-landing-intro h2{margin:10px 0 10px; padding-top:30px;}
.pr-landing-intro .content{width:27%; max-width:240px; padding-top:100px;}
.pr-landing-intro .content.left{text-align:left;}
.pr-landing-intro .content h5{font-size:20px; margin:0px 0 20px}
.pr-landing-intro .content h5 span{display:block; font-size:18px;}
.pr-landing-intro .img-col{width:calc(100% - 520px);}
.pr-landing-collection ul{padding-left:0; justify-content:space-around;}
.pr-landing-collection ul li{margin-bottom:50px; list-style:none;}
.pr-landing-collection ul li .img{border:1px solid #E0D9D3; margin-bottom:15px;}
.pr-landing-collection ul li a{color:#000; text-decoration:none; font-weight:600;}
.pr-landing-story{background:#EFECE9;}
.pr-landing-story h2{margin-top:0; padding-top:0;}
.pr-landing-story .content{padding-top:50px;}

.pr-landing-accessories{padding-bottom:0;}
.pr-landing-collection .container,
.template--product-landing .extra-info .container,
.pr-landing-accessories .container{}
.template--product-landing .extra-info{padding-top:50px;}
.template--product-landing .reviews{background:#EFECE9; border-bottom:solid 1px #fff; }

.fullwidth-content .container{}
.fullwidth-content .content{ font-size:25px; font-weight:300; line-height:35px;} 
.mix-match{padding-top:0;}

.slider-mix-match .slick-track{padding:60px 0;}
.slider-mix-match .slide{transform:scale(0.5); border:solid 1px transparent; margin-bottom:23px; padding:0px; transition:0.3s ease;}
.slider-mix-match .slide img{width:100%;}
.slider-mix-match .slick-current .slide{transform:scale(1.25);}
.slider-mix-match .slick-arrow{bottom:-25px; position:absolute; z-index:11; font-size:0; color:#fff;  left:calc(50% - 27px); transform:translateX(-50%); background:#D72854; border-radius:50%; width:45px; height:45px; }
.slider-mix-match .slick-next.slick-arrow{ left:calc(50% + 27px); transform:translateX(-50%) scale(-1);}
.slider-mix-match .slick-arrow:after{position:absolute; top:50%; left:50%; width:10px; content:'' ;height:10px; border-bottom:solid 1px #fff; border-left:solid 1px #fff; transform:translate(-50%,-50%) rotate(45deg);}
.slider-mix-match .slick-dots{list-style:none; position:absolute; bottom:-50px; left:50%; transform:translateX(-50%); display:flex; justify-content:center;}
.slider-mix-match .slick-dots button{width:8px; height:8px; border-radius:50%; margin:0 0px; background:rgba(0,0,0,0.6);}
.slider-mix-match .slick-dots .slick-active button{background:#000;}


@media(min-width:1750px){
  .banner:before{width:75%;}
}
@media(min-width:1400px){
  .banner:before{width:67%;}
  
}
@media(max-width:1365px)
{
  
  .slider-mix-match .slick-current .slide{transform:scale(1);}
  .slider-mix-match .slick-arrow{bottom:0;}
  .slider-mix-match .slick-dots{bottom:-20px;}
}
@media(max-width:1199px){
  .content-with-image-sec .content-col{padding:80px;}
  .featured-collection{padding:0 0 7rem 0 !important;}
  .images-with-text--spacing-desktop-compact{padding-bottom:0 !important;}
}

@media(max-width:991px){
  .story-sec .img-col{width:38%;}
  .story-sec .content-col{width:57%;}
  .one-third{width:48%; margin-bottom:60px;}
  
.one-fourth{width:48%; margin-bottom:20px;}
  .content-with-image-sec .content-col{padding:60px 60px;}

  .sourcing-sec .source-list .one-fifth{width:32%; margin-bottom:40px}


.home-categories .category-grid{display:none;}  
.home-categories  .mob-category{display:flex; flex-wrap:wrap; justify-content: space-around;}
.home-categories .mob-category .category-box{width:32%; margin-bottom:30px;}  
.home-categories .mob-category .category-box a{border:solid 1px #edeae7; position:relative; vertical-align:text-top; padding-bottom:0px; display:flex; flex-flow:column-reverse; text-decoration:none; width:100%;  height:100% ;  font-size:19px; font-weight:600; color:#101116; text-align:center;}
.home-categories .mob-category a img{display:block; margin:0 auto; width:100%; height:100%; object-fit:cover;}

.category_slider_sec .category-col{width:100%; margin-bottom:20px;}  
   .banner:before,
   .banner:after{display:none;}
  .banner{background:url('https://cdn.shopify.com/s/files/1/1123/0638/t/37/assets/blackbg.png?v=1669054038') no-repeat left top !important; background-size:200% 100% !important; padding-top:0;}
  .banner .banner_text{max-width:100%; padding-top:40px;}
 .banner .mob_img{display:block;}  
 .banner .mob_img img{width:100%;}

.netflix-sec .one-third{width:100%; margin-bottom:30px;}
.netflix-sec .two-third{width:100%;}
.movie-sec .logo{width:100%; margin-bottom:20px; text-align:center;}
.movie-sec .img{width:100%; margin-bottom:20px; text-align:center}
.movie-sec .content{width:100%;}


.home-categories .h6 p, .home-categories .h6{font-size:28px; line-height:36px; margin-bottom:30px;}
.content-with-image-sec .content-col .content{font-size:28px; line-height:36px;}
.content-with-image-sec .content-col .icon-box-list .icon-box{font-size:18px;}    

.images-with-text--spacing-desktop-compact{padding-bottom:6rem !important;}  
 .celebrity-sec .h2{font-size:36px;} 
  .celebrity-sec .review{font-size:20px;}
 #splide03-list .reviews__content{font-size:22px !important;} 
  
 .footer__main >.container >.flex-row >.one-fifth {width:14%;}
 .footer__main >.container >.flex-row >.fourth-fifth {width:85%;}
.newsletter-box-footer h2,
 #splide03-list .p1{font-size:26px !important;} 
  .commitment-sec .left-col h2{font-size:30px;}
  .vegan-sec,
  .history-sec .intro-sec,
  .our-story-banner{padding:60px 0;}
  .designer-intro-sec h1,
  .template--page.template--designer h1,
  .template--page.template--designer .h1,
  .our-story-banner h1{font-size:32px !important;}
  .our-story-banner h1 span{font-size:28px !important;}
  
  .history-row .flex-row .year-col span{font-size:36px; line-height:42px;}
  
.fullwidth-content .content{font-size:22px;}
}

@media(max-width:989px){
  .images-with-text__entry,
  .images-with-text__head{max-width:100%;}
    
.sustainable-intro-sec h1{font-size:30px;}
  .tabbing-section .tab-content h2{font-size:27px;}
  .img-content-sec .content-col h4{margin:0 0 15px 0;}
}
@media(max-width:767px){
  .one-third{width:100%; margin-bottom: 30px;}
  .story-sec .img-col{width:100%; margin-bottom: 20px;}
  .story-sec .content-col{width: 100%;}
  .content-with-image-sec .content-col .icon-box-list{width:100%; max-width:100%;}
  .history-sec .history-row .flex-row .year-col{width:100%; margin-bottom:20px;}
  .history-sec .history-row .flex-row .history-item figure{width:80px; margin-right:20px;}
  .history-sec .history-row .flex-row .history-item h6{width:calc(100% - 100px);}
  .manifesto-list .manifesto{ width:calc(48% - 15px); margin:0 7.5px 65px;} 
  .footer__main .four-fifth{width:100%; margin-bottom:30px;}
  .footer__main .one-fifth{width:100%; margin-bottom:30px;}
  .one-fourth{width:100%;}
  .footer__main{padding:40px 0;}
  .footer__main .one-fifth figure:first-child{margin-bottom:30px;}
  .footer__main .four-fifth .one-fourth{width:48%; margin-bottom:30px;}
  .footer__main .four-fifth .copyright-row{flex-flow:column-reverse; margin-top:30px;}
  .footer__main .four-fifth .copyright-row ul,
  .footer__main .four-fifth .copyright-row figure{width:100%;}
  .single-row.fullwidth .one-third{width:100%; margin: 0;}
  .sourcing-sec .source-list .one-fifth{width:48%; margin-bottom:40px}
  .commitment-sec .left-col span{display:block; font-size:24px;}
  .section-pd{padding:40px 0;}
  .sustainable-intro-sec{padding:40px 0 0;}
  .intro-sec,
  .press-intro-sec,
  .video-sec,
  .designer-intro-sec,
  .tabbing-section .tab-content, 
  .commitment-sec,
  .single-row, 
  .banner,
  .home-categories,
  .sourcing-sec{padding:40px 0}
  .blog-sec{padding-bottom:40px;}
  .commitment-sec .left-col{width:100%;}
  .commitment-sec .left-col .img{display:none;}  
  .commitment-sec .right-col{width:100%; padding:30px 16px;}
  .content-with-image-sec .half-col{width:100%;}
  .content-with-image-sec .content-col{padding:40px 20px;}
  .commitment-sec .left-col span{display:block; font-size:22px;}
  .featured-on-brands{padding:70px 0;}
  .featured-on-brands .container figure{width:33%;}
  .extra-info{padding:60px 0 30px; }
  .extra-info ul{padding-left:0;}
  .extra-info ul li{width:50%; margin-bottom:30px; padding:0 15px; font-size:16px;}
  .newsletter__media{display:none;}
  .home-categories .mob-category .category-box{width:48%;}
  .tabbing-section .tab-list .tab-item{font-size:13px; padding:10px 12px;}
  .tabbing-section .tab-content h2{font-size:24px;}
  .press-page .tabbing-section .tab-list{padding-bottom:15px;}
  .press-page .tabbing-section .tab-list .tab-item{width:100%;}
  .img-content-sec .content-col{width:100%}
  .img-content-sec .img-col{width:100%; order:-1;}
  iframe{max-width:100%; height:auto; }
  .video-sec iframe{padding:25px 0;}
  .press-page figure img{width:100%;}
  .img-content-sec .flex-row.flex-reverse{flex-wrap:wrap;}
  .img-content-sec .flex-reverse .content-col,
  .img-content-sec .content-col{padding:20px 20px 0;}
  .img-content-sec .flex-row{padding:25px 0;}
  .pr-landing-intro .content{width:100%; max-width:100%; padding-top:00px; text-align:center !important;}
  .pr-landing-intro .img-col{width:100%; margin:30px 0; }
  .mix-match{padding: 0 0 60px;}  

.home-categories .mob-category .category-box a{padding-bottom:0; font-size:16px;}  
.home-categories .h6 p, .home-categories .h6{font-size:21px; line-height:30px; margin-bottom:30px;}
.content-with-image-sec .content-col .content{font-size:22px; line-height:30px;}
.content-with-image-sec .content-col .icon-box-list .icon-box{font-size:16px;}  
.newsletter-box-footer h2,
#splide03-list .p1{font-size:22px !important;}  
.sustainable-intro-sec h1{font-size:27px;}  
   h2, .h2,
  .we-give-page .intro-sec h1,
  .commitment-sec .left-col h2{font-size:24px;}
  .press-intro-sec h1{font-size:28px !important;}
   
  .commitment-sec .left-col span{font-size:20px;}
  .images-with-text--spacing-mobile-compact,
  .richtext--spacing-mobile-default{padding:4rem 0 !important;}
  .images-with-text__col h4,
  .images-with-text__title{margin:10px 0 10px !important;}
  .template--page.template--manufacturing .we-give-page .intro-sec,
  .template--page.template--manufacturing .single-row,
  .template--page.template--manufacturing .video-sec{padding-bottom:0;}
  .manu-chart .fullwidth-image{padding:20px 0;}
  .movie-sec .logo img{max-width:200px; margin: 0 auto;}
  .img-content-sec .flex-reverse .content-col h6, .img-content-sec .content-col h6,
  .movie-sec h6,.movie-sec h5{margin:10px 0 !important;}
  .press_video{padding-top:0;}
  .vegan-sec,
  .history-sec .intro-sec,
  .our-story-banner{padding:40px 0;}
  .designer-intro-sec h1,
  .template--page.template--designer h1,
  .template--page.template--designer .h1,
  .our-story-banner h1{font-size:26px !important;}
  .our-story-banner h1 span{font-size:24px !important}
  .history-sec .intro-sec,
  .story-sec .content-col{font-size:17px; line-height:25px;}
  .history-row .flex-row .year-col span{font-size:28px; line-height:32px;}
  .history-row .flex-row .content-col{width:100%;}
  
  .template--page.template--designer h1,
  .template--page.template--designer .h1,
  .designer-intro-sec h1{margin:0 0 20px;}
.fullwidth-content .content{font-size:20px;}
  .img-content-sec .content-col .year{font-size:20px; min-width:inherit; padding:12px 20px;}
}

@media(max-width:479px){
  .manifesto-list .manifesto{ width:100%; margin:0 0 45px;}
  .sourcing-sec .source-list .one-fifth{width:100%; margin-bottom:40px}
  .tabbing-section .tab-list{padding:0 0 0 0;}
 .tabbing-section .tab-list .tab-item{font-size:10px; padding:10px 8px;}
}

.main-product__gallery-modal{z-index: 99999 !important;}
.section-newsletter{background-repeat: no-repeat; background-position: left top; background-size: auto 100%; min-height: 510px; padding: 20px; display: flex; justify-content: center; align-items: center; text-align: center;}
.newsletter-box-footer{width: 100%; max-width: 420px; margin-left: 30%;}
.newsletter-box-footer h2{margin: 0;}

@media all and (max-width: 1200px){
  .section-newsletter{min-height: auto; justify-content: flex-end;}
  .newsletter-box-footer{margin-left: 0;}
}

@media all and (max-width: 900px){
  .section-newsletter{background-image: none !important; justify-content: center;}
