/** Shopify CDN: Minification failed

Line 2613:26 Expected ":"
Line 2648:19 "posotion" is not a known CSS property

**/
* {
  box-sizing: border-box;
}
@font-face {
    font-family: 'neue-haas-grotesk';
    src: url('/cdn/shop/files/HaasGrotTextR-75Bold.eot?v=1786094187');
    src: url('HaasGrotTextR-75Bold.eot?#iefix') format('embedded-opentype'),
        url('/cdn/shop/files/HaasGrotTextR-75Bold.woff2?v=1786094187') format('woff2'),
        url('/cdn/shop/files/HaasGrotTextR-75Bold.woff?v=1786094187') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('/cdn/shop/files/NeueHaasDisplay-Black.woff2?v=1786596998') format('woff2'),
        url('/cdn/shop/files/NeueHaasDisplay-Black.woff?v=1786596998') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('/cdn/shop/files/NeueHaasDisplay-Bold.woff?v=1786596997') format('woff2'),
        url('/cdn/shop/files/NeueHaasDisplay-Bold.woff2?v=1786596998') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
 
body {
  color: var(--color-foreground);
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
  font-variation-settings: 'slnt' 0;
}

:root {
  --hover-lift-amount: 4px;
  --hover-scale-amount: 1.03;
  --hover-subtle-zoom-amount: 1.015;
  --hover-shadow-color: var(--color-shadow);
  --hover-transition-duration: 0.25s;
  --hover-transition-timing: ease-out;
  --surface-transition-duration: 0.3s;
  --surface-transition-timing: var(--ease-out-quad);
  --submenu-animation-speed: 360ms;
  --submenu-animation-easing: cubic-bezier(0.25, 0.1, 0.25, 1);



  --background: #FAF9F7;
    --foreground: #111111;
    --primary: #111111;
    --primary-foreground: #FAF9F7;
    --secondary: #E9E9E9;
    --secondary-foreground: #111111;
    --accent: #D0021B;
    --accent-foreground: #FAF9F7;
    --muted: #E9E9E9;
    --muted-foreground: #666666;
    --card: #FAF9F7;
    --card-foreground: #111111;
    --border: #E9E9E9;
    --input: #E9E9E9;
    --ring: #111111;
    --radius: 0.75rem;
    --font-sans: var(--font-inter), "Inter", sans-serif;
    --font-satoshi: "Satoshi", var(--font-inter), "Inter", sans-serif;
    --font-neue-haas: "Neue Haas Grotesk", var(--font-inter), "Inter", sans-serif;
    --hoc-cream: #FAF9F7;
    --hoc-warm: #FAF9F7;
    --hoc-stone: #E9E9E9;
    --hoc-border: #E9E9E9;
    --hoc-muted: #888888;
    --hoc-text: #111111;
    --hoc-charcoal: #111111;
    --hoc-softgrey: #E9E9E9;
    --candy-red: #D0021B;
    --pastel-mint: #B8E0D2;
    --hoc-gold: #111111;
    --hoc-gold-light: #E9E9E9;
    --candy-yellow: #FAF9F7;
    --candy-green: #B8E0D2;
    --candy-pink: #D0021B;
    --candy-orange: #D0021B;
    --candy-purple: #111111;
    --candy-teal: #B8E0D2;
    --pastel-gummy: #FAF9F7;
    --pastel-lolly: #FAF9F7;
    --pastel-fizzy: #FAF9F7;
    --pastel-sour: #FAF9F7;
    --pastel-pez: #FAF9F7;
    --pastel-marsh: #FAF9F7;

}

html {
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) var(--color-background);
  scroll-behavior: smooth;
}

@media (min-width: 990px) {
  html:has(.page-wrapper),
  html:has(.page-wrapper) body {
    height: 100dvh;
    overflow: hidden;
  }
}

html[scroll-lock],
html[scroll-lock] .page-wrapper {
  overflow: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  transition: margin-right var(--animation-speed) var(--animation-timing-fade-out);
}

@media (min-width: 990px) {
  .page-wrapper {
    height: 100dvh;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) var(--color-background);
  }

  .page-wrapper--drawer-open shopify-account::part(dialog) {
    translate: calc(-1 * var(--theme-drawer-width, var(--sidebar-width)));
  }
}

.page-wrapper--drawer-open {
  margin-right: var(--theme-drawer-width, var(--sidebar-width));
  transition-timing-function: var(--animation-timing-fade-in);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

/** override ios and firefox defaults */
select {
  background-color: var(--color-background);
  color: currentcolor;
}

.product-card,
.collection-card,
.predictive-search-results__card--product,
.predictive-search-results__card {
  position: relative;
  transition: transform var(--hover-transition-duration) var(--hover-transition-timing),
    box-shadow var(--hover-transition-duration) var(--hover-transition-timing);
  z-index: var(--layer-flat);
}

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

.product-card__content {
  position: relative;
}

.product-card__content {
  cursor: pointer;
}

@media (any-pointer: fine) and (prefers-reduced-motion: no-preference) {
  .card-hover-effect-lift .product-card:hover,
  .card-hover-effect-lift .collection-card:hover,
  .card-hover-effect-lift .predictive-search-results__card:hover {
    transform: translateY(calc(-1 * var(--hover-lift-amount)));
  }

  .card-hover-effect-scale .product-card:hover,
  .card-hover-effect-scale .collection-card:hover,
  .card-hover-effect-scale .predictive-search-results__card:hover {
    transform: scale(var(--hover-scale-amount));
  }

  .card-hover-effect-subtle-zoom .card-gallery,
  .card-hover-effect-subtle-zoom .collection-card__image,
  .card-hover-effect-subtle-zoom .product-card__image {
    overflow: hidden;
    transition: transform var(--hover-transition-duration) var(--hover-transition-timing);
  }

  .card-hover-effect-subtle-zoom .product-card:hover .card-gallery,
  .card-hover-effect-subtle-zoom .collection-card:hover .collection-card__image,
  .card-hover-effect-subtle-zoom .product-card:hover .product-card__image,
  .card-hover-effect-subtle-zoom .predictive-search-results__card:hover {
    transform: scale(var(--hover-subtle-zoom-amount));
  }
}

dialog {
  /* the ::backdrop inherits from the originating element, custom properties must be set on the dialog element */
  --backdrop-color-rgb: var(--color-shadow-rgb);

  background-color: var(--color-background);
  color: var(--color-foreground);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.wrap-text {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

p:empty {
  display: none;
}

:first-child:is(p, h1, h2, h3, h4, h5, h6),
:first-child:empty + :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

/* Remove bottom margin from last text item, or previous to last if the last is empty */
:last-child:is(p, h1, h2, h3, h4, h5, h6),
:where(p, h1, h2, h3, h4, h5, h6):nth-child(2):has(+ :last-child:empty) {
  margin-block-end: 0;
}

/* view transitions */

/*
 * The cross-document (MPA) opt-in `@view-transition { navigation: auto }` is declared per-layout
 * (layout/theme.liquid and layout/password.liquid), because this stylesheet is shared by both layouts
 * and a static stylesheet can't read theme settings.
 * It is gated on the same `settings.page_transition_enabled or settings.transition_to_main_product` condition as the
 * render blocker, so the opt-in and its opt-out switch can never disagree. The rules below only
 * take effect once an `@view-transition` opt-in is active, so they are inert without it.
 */
@media (prefers-reduced-motion: no-preference) {
  /* Keep page interactive while view transitions are running */
  :root {
    view-transition-name: none;
  }

  /* Have the root transition during page navigation */
  html:active-view-transition-type(page-navigation),
  html:active-view-transition-type(product-image-transition) {
    view-transition-name: root-custom;
  }

  ::view-transition {
    pointer-events: none;
  }

  html:active-view-transition-type(page-navigation) main[data-page-transition-enabled='true'] {
    view-transition-name: main-content;
  }

  html:active-view-transition-type(page-navigation) main[data-product-transition='true'][data-template*='product'] {
    view-transition-name: none;
  }

  ::view-transition-old(main-content) {
    animation: var(--view-transition-old-main-content);
  }

  ::view-transition-new(main-content) {
    animation: var(--view-transition-new-main-content);
  }

  html:active-view-transition-type(product-image-transition) {
    [data-view-transition-type='product-image-transition'] {
      view-transition-name: product-image-transition;
    }

    [data-view-transition-type='product-details'] {
      view-transition-name: product-details;
    }
  }

  ::view-transition-group(product-image-transition) {
    z-index: 1;
  }

  ::view-transition-group(product-image-transition),
  ::view-transition-group(product-details) {
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
  }

  ::view-transition-old(product-image-transition),
  ::view-transition-new(product-image-transition) {
    block-size: 100%;
    overflow: hidden;
    object-fit: cover;
    animation-duration: 0.25s;
    animation-timing-function: var(--animation-easing);
  }

  ::view-transition-new(product-details) {
    animation: var(--view-transition-new-main-content);
  }
}

/* Focus */
*:focus-visible {
  outline: var(--focus-outline-width) solid currentcolor;
  outline-offset: var(--focus-outline-offset);
}

@supports not selector(:focus-visible) {
  *:focus {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }
}

.focus-inset {
  outline-offset: calc(var(--focus-outline-width) * -1);
}

/* Layout */
.content-for-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-for-layout > .shopify-section:last-child {
  flex-grow: 1;
}

/* Set up page widths & margins */
.page-width-wide,
.page-width-normal,
.page-width-narrow,
.page-width-content {
  --page-margin: 16px;
}

@media screen and (min-width: 750px) {
  .page-width-wide,
  .page-width-normal,
  .page-width-narrow,
  .page-width-content {
    --page-margin: 40px;
  }
}

.page-width-wide {
  /* NOTE: This results in a page width of 2400px because of how we set up margins with grid */
  --page-content-width: var(--wide-page-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

.page-width-normal {
  --page-content-width: var(--normal-page-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

.page-width-narrow,
.page-width-content {
  /* NOTE: This results in a page width of 1400px because of how we set up margins with grid */
  --page-content-width: var(--narrow-page-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

.page-width-content {
  --page-content-width: var(--normal-content-width);
  --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
}

/* Section width full vs. page
   The reason we use a grid to contain the section is to allow for the section to have a
   full-width background image even if the section content is constrained by the page width. Do not try
   to rewrite this to max-width: --page-width; margin: 0 auto;, it doesn't work. */
.section {
  --full-page-grid-central-column-width: min(
    var(--page-width) - var(--page-margin) * 2,
    calc(100% - var(--page-margin) * 2)
  );
  --full-page-grid-margin: minmax(var(--page-margin), 1fr);
  --full-page-grid-with-margins: var(--full-page-grid-margin) var(--full-page-grid-central-column-width)
    var(--full-page-grid-margin);

  /* Utility variable gives the grid's first column width. Provides an offset width for components like carousels */
  --util-page-margin-offset: max(
    var(--page-margin),
    calc((100% - min(var(--page-content-width), 100% - var(--page-margin) * 2)) / 2)
  );

  /* Offset for full-width sections to account for the page margin,
  used for Marquee — note that --util-page-margin-offset doesn't work here */
  --full-page-margin-inline-offset: calc(((100vw - var(--full-page-grid-central-column-width)) / 2) * -1);

  width: 100%;

  /* This is required to make background images work, which are <img> rendered absolutely */
  position: relative;

  /* Set up the grid */
  display: grid;
  grid-template-columns: var(--full-page-grid-with-margins);
  min-height: var(--section-min-height, 'auto');
}

/* Place all direct children in the center column by default */
.section > * {
  grid-column: 2;
}

/* Make the actual section background transparent, and instead apply it to a separate sibling element to enable stacking with hero shadow  */
.shopify-section:not(.header-section) :is(.section, .cart-summary) {
  background: transparent;
}

.shopify-section:not(.header-section):has(.section) {
  position: relative;
}
.star-rating_wrap {
    display: flex;
}
.shopify-section:not(.header-section) .section-background {
  content: '';
  position: absolute;
  inset: 0;
  z-index: var(--layer-section-background);
  background-color: var(--color-background);
}

/* For page-width sections, all content goes in the center column */
.section--page-width > * {
  grid-column: 2;
}

/* For full-width sections, content spans all columns */
.section--full-width > * {
  grid-column: 1 / -1;
}

@media screen and (max-width: 749px) {
  .section--mobile-full-width > * {
    grid-column: 1 / -1;
  }
}

/* Some page-width sections should still extend all the way to the right edge of the page, e.g. collection carousel */
.section--page-width.section--full-width-right > * {
  grid-column: 2 / 4;
}

/* For full-width sections with margin, content still spans full width but with space on the sides */
.section--full-width.section--full-width-margin > * {
  grid-column: 1 / -1;

  @media screen and (min-width: 750px) {
    padding-left: var(--page-margin);
    padding-right: var(--page-margin);
  }
}

/* Some section content break out to full width of the page */
.section > .force-full-width {
  grid-column: 1 / -1;
}

.section--height-small {
  --section-min-height: var(--section-height-small);
}

.section--height-medium {
  --section-min-height: var(--section-height-medium);
}

.section--height-large {
  --section-min-height: var(--section-height-large);
}

.section--height-full-screen {
  --section-min-height: 100svh;
}

.section-content-wrapper.section-content-wrapper {
  min-height: calc(var(--section-min-height, 'auto') - var(--section-height-offset, 0px));
  position: relative;
  width: 100%;
  height: 100%;
}

/* Utility */

.hidden {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}

@media screen and (max-width: 749px) {
  .hidden--mobile,
  .mobile\:hidden {
    /* stylelint-disable-next-line declaration-no-important */
    display: none !important;
  }
}

@media screen and (min-width: 750px) {
  .hidden--desktop,
  .desktop\:hidden {
    /* stylelint-disable-next-line declaration-no-important */
    display: none !important;
  }
}

.hide-when-empty:empty {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}

.visually-hidden:not(:focus, :active) {
  /* stylelint-disable-next-line declaration-no-important */
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  /* stylelint-disable-next-line declaration-no-important */
  word-wrap: normal !important;
}

.contents {
  display: contents;
}

.flex {
  display: flex;
  gap: var(--gap-md);
}

.grid {
  --centered-column-number: 12;
  --full-width-column-number: 14;
  --centered: column-1 / span var(--centered-column-number);
  --full-width: column-0 / span var(--full-width-column-number);

  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 750px) {
  .grid {
    display: grid;
    gap: 0;
    grid-template-columns: var(--margin-4xl) repeat(var(--centered-column-number), minmax(0, 1fr)) var(--margin-4xl);
    grid-template-areas: 'column-0 column-1 column-2 column-3 column-4 column-5 column-6 column-7 column-8 column-9 column-10 column-11 column-12 column-13';
  }
}

@media screen and (min-width: 1400px) {
  .grid {
    grid-template-columns:
      1fr repeat(
        var(--centered-column-number),
        minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
      )
      1fr;
  }
}

.flex {
  display: flex;
  gap: var(--gap-md);
}

.flip-x {
  scale: -1 1;
}

.flip-y {
  scale: 1 -1;
}

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

.text-left {
  --text-align: left;

  text-align: left;
}

.text-center {
  --text-align: center;

  text-align: center;
}

.text-right {
  --text-align: right;

  text-align: right;
}

.text-inherit {
  color: inherit;
}

.user-select-text {
  user-select: text;
}

.justify-left {
  justify-content: left;
}

.justify-center {
  justify-content: center;
}

.justify-right {
  justify-content: right;
}

.title--aligned-center {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.background-image-container {
  overflow: hidden;
  position: absolute;
  inset: 0;
  opacity: var(--image-opacity);
}

.background-image-container img,
.background-image-container svg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.background-image-fit img,
.background-image-fit svg {
  object-fit: contain;
}

.svg-wrapper {
  color: currentcolor;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  pointer-events: none;
}

.svg-wrapper--smaller {
  width: var(--icon-size-2xs);
  height: var(--icon-size-2xs);
}

.svg-wrapper--small {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

.svg-wrapper > svg {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
}

.relative {
  position: relative;
}

/* Icons */
.icon-success,
.icon-error {
  width: var(--icon-size-md);
  height: var(--icon-size-md);
  flex-shrink: 0;
}

.icon-success {
  color: var(--color-success);
}

.icon-error {
  fill: var(--color-error);
}

.icon-default {
  fill: currentColor;
}

[data-placeholder='true'] * {
  cursor: default;
}

/* Base text and heading styles */
body,
.paragraph:not(.button),
.paragraph > *,
.text-block.paragraph :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-paragraph--family);
  font-style: var(--font-paragraph--style);
  font-weight: var(--font-paragraph--weight);
  font-size: var(--font-paragraph--size);
  line-height: var(--font-paragraph--line-height);
  text-transform: var(--font-paragraph--case);
  -webkit-font-smoothing: antialiased;
  color: var(--color, var(--color-foreground));
}

/* Ensure inputs with type presets maintain minimum 16px on mobile to prevent iOS zoom */
@media screen and (max-width: 1200px) {
  input.paragraph.paragraph,
  input.paragraph.paragraph:not([type]),
  textarea.paragraph.paragraph,
  select.paragraph.paragraph {
    font-size: max(1rem, var(--font-paragraph--size));
  }
}

.paragraph > small {
  font-size: smaller;
}

/* Typography presets */

h1,
.h1.h1,
.text-block.h1 > *,
.text-block.h1 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h1--family);
  font-style: var(--font-h1--style);
  font-weight: var(--font-h1--weight);
  font-size: var(--font-h1--size);
  line-height: var(--font-h1--line-height);
  letter-spacing: var(--font-h1--letter-spacing);
  text-transform: var(--font-h1--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h1.h1,
  textarea.h1.h1,
  select.h1.h1 {
    font-size: max(1rem, var(--font-h1--size));
  }
}

h2,
.h2.h2,
.text-block.h2 > *,
.text-block.h2 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h2--family);
  font-style: var(--font-h2--style);
  font-weight: var(--font-h2--weight);
  font-size: var(--font-h2--size);
  line-height: var(--font-h2--line-height);
  letter-spacing: var(--font-h2--letter-spacing);
  text-transform: var(--font-h2--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h2.h2,
  textarea.h2.h2,
  select.h2.h2 {
    font-size: max(1rem, var(--font-h2--size));
  }
}

h3,
.h3,
.h3.h3,
.text-block.h3 > *,
.text-block.h3 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h3--family);
  font-style: var(--font-h3--style);
  font-weight: var(--font-h3--weight);
  font-size: var(--font-h3--size);
  line-height: var(--font-h3--line-height);
  letter-spacing: var(--font-h3--letter-spacing);
  text-transform: var(--font-h3--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h3,
  textarea.h3,
  select.h3 {
    font-size: max(1rem, var(--font-h3--size));
  }
}

h4,
.h4.h4,
.text-block.h4 > *,
.text-block.h4 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h4--family);
  font-style: var(--font-h4--style);
  font-weight: var(--font-h4--weight);
  font-size: var(--font-h4--size);
  line-height: var(--font-h4--line-height);
  letter-spacing: var(--font-h4--letter-spacing);
  text-transform: var(--font-h4--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h4.h4,
  textarea.h4.h4,
  select.h4.h4 {
    font-size: max(1rem, var(--font-h4--size));
  }
}

h5,
.h5.h5,
.text-block.h5 > *,
.text-block.h5 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h5--family);
  font-style: var(--font-h5--style);
  font-weight: var(--font-h5--weight);
  font-size: var(--font-h5--size);
  line-height: var(--font-h5--line-height);
  letter-spacing: var(--font-h5--letter-spacing);
  text-transform: var(--font-h5--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h5.h5,
  textarea.h5.h5,
  select.h5.h5 {
    font-size: max(1rem, var(--font-h5--size));
  }
}

h6,
.h6.h6,
.text-block.h6 > *,
.text-block.h6 :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-h6--family);
  font-style: var(--font-h6--style);
  font-weight: var(--font-h6--weight);
  font-size: var(--font-h6--size);
  line-height: var(--font-h6--line-height);
  letter-spacing: var(--font-h6--letter-spacing);
  text-transform: var(--font-h6--case);
  color: var(--color);
}

@media screen and (max-width: 1200px) {
  input.h6.h6,
  textarea.h6.h6,
  select.h6.h6 {
    font-size: max(1rem, var(--font-h6--size));
  }
}

:first-child:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  margin-block-start: 0;
}

:last-child:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  margin-block-end: 0;
}

/* Links */
a {
  color: currentcolor;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.075em;
  text-underline-offset: 0.125em;
  transition: text-decoration-color var(--animation-speed) var(--animation-easing),
    color var(--animation-speed) var(--animation-easing);
}

:is(h1, h2, h3, h4, h5, h6, p) > a:hover {
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / 0.7);
}

/* Add underline to text using our paragraph styles only. */
p:not(.h1, .h2, .h3, .h4, .h5, .h6) a:where(:not(.button, .button-secondary)),
.rte :is(p, ul, ol, table):not(.h1, .h2, .h3, .h4, .h5, .h6) a:where(:not(.button, .button-secondary)) {
  text-decoration-color: currentcolor;

  &:hover {
    text-decoration-color: currentcolor;
    color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / 0.7);
  }
}

.container-background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

details[open] .summary-closed {
  display: none;
}

details:not([open]) .summary-open {
  display: none;
}

details[open] > summary .icon-animated > svg {
  transform: rotate(180deg);
}

/* iOS fix: hide the default arrow on the summary */
summary::-webkit-details-marker {
  display: none;
}

/* When header is transparent, pull the first main content section up to sit under the floating header */
body:has(.header[transparent]) .content-for-layout > .shopify-section:first-child {
  margin-top: calc(var(--header-group-height) * -1);
}

body:has(.header[transparent]) #header-group > .header-section {
  z-index: var(--layer-menu-drawer);
}

/* All other header group content should be beneath the floating header,
but above the rest of the page content */
body:has(.header[transparent]) #header-group > *:not(.header-section) {
  z-index: calc(var(--layer-menu-drawer) - 1);
}

.text-block {
  width: 100%;
}

.text-block > *:first-child,
.text-block > *:first-child:empty + * {
  margin-block-start: 0;
}

.text-block > *:last-child,
.text-block > *:has(+ *:last-child:empty) {
  margin-block-end: 0;
}

/* This is to deal with the margin applied to the p when custom styles are enabled. The p isn't the first child anymore due to the style tag */
.text-block > style + * {
  margin-block-start: 0;
}

/* Dialog */
.dialog-modal {
  border: none;
  box-shadow: var(--shadow-popover);

  @media screen and (min-width: 750px) {
    border-radius: var(--style-border-radius-popover);
    max-width: var(--normal-content-width);
  }

  @media screen and (max-width: 749px) {
    max-width: 100%;
    max-height: 100%;
    height: 100dvh;
    width: 100dvw;
    padding: var(--padding-md);
  }
}

.dialog-modal::backdrop {
  transition: backdrop-filter var(--animation-speed) var(--animation-easing);
  backdrop-filter: brightness(1);
  background: rgb(var(--backdrop-color-rgb) / var(--backdrop-opacity));
}

.dialog-modal[open] {
  animation: elementSlideInTop var(--animation-speed) var(--animation-easing) forwards;

  &::backdrop {
    animation: backdropFilter var(--animation-speed) var(--animation-easing) forwards;
    transition: opacity var(--animation-speed) var(--animation-easing);
  }
}

.dialog-modal.dialog-closing {
  animation: elementSlideOutTop var(--animation-speed) var(--animation-easing) forwards;

  &::backdrop {
    opacity: 0;
  }
}

/* stylelint-disable value-keyword-case */
.dialog-drawer {
  --dialog-drawer-opening-animation: move-and-fade;
  --dialog-drawer-closing-animation: move-and-fade;
}

.dialog-drawer--right {
  --dialog-drawer-opening-animation: move-and-fade;
  --dialog-drawer-closing-animation: move-and-fade;
}
/* stylelint-enable value-keyword-case */

.dialog-drawer[open] {
  --start-x: var(--custom-transform-from, 100%);
  --end-x: var(--custom-transform-to, 0px);
  --start-opacity: 1;

  animation: var(--dialog-drawer-opening-animation) var(--animation-speed) var(--animation-easing) forwards;
}

.dialog-drawer[open].dialog-closing {
  --start-x: 0px;
  --end-x: 100%;
  --start-opacity: 1;
  --end-opacity: 1;

  animation: var(--dialog-drawer-closing-animation) var(--animation-speed) var(--animation-easing);
}

.dialog-drawer--right[open] {
  --start-x: -100%;
  --start-opacity: 1;
}

.dialog-drawer--right[open].dialog-closing {
  --start-x: 0px;
  --end-x: -100%;
  --start-opacity: 1;
  --end-opacity: 1;

  animation: var(--dialog-drawer-closing-animation) var(--animation-speed) var(--animation-easing);
}

/* Buttons */
.button,
.button-secondary,
.button-custom,
button.shopify-payment-button__button--unbranded {
  --text-align: center;

  display: grid;
  align-content: center;
  text-decoration: none;
  text-align: var(--text-align);
  color: var(--button-color);
  appearance: none;
  background-color: var(--button-background-color);
  border: none;
  font-family: var(--font-paragraph--family);
  font-style: var(--font-paragraph--style);
  font-weight: 700;
  font-size: 13px;
  line-height: var(--font-paragraph--line-height);
  margin-block: 0;
  transition: color var(--animation-speed) var(--animation-easing),
    box-shadow var(--animation-speed) var(--animation-easing),
    background-color var(--animation-speed) var(--animation-easing);
  cursor: pointer;
  width: fit-content;
  box-shadow: inset 0 0 0 var(--button-border-width) var(--button-border-color);
  padding-block: var(--button-padding-block);
  padding-inline: var(--button-padding-inline);
  letter-spacing:0.78px;
}

.button {
  font-family: var(--button-font-family-primary);
  text-transform: var(--button-text-case-primary);
  border-radius: var(--style-border-radius-buttons-primary);
}

.button:not(.button-secondary, .button-unstyled) {
  outline-color: var(--button-focus-outline-color, var(--button-background-color));
}

.button-secondary {
  font-family: var(--button-font-family-secondary);
  text-transform: var(--button-text-case-secondary);
  border-radius: var(--style-border-radius-buttons-secondary);
}

button.shopify-payment-button__button--unbranded {
  font-family: var(--button-font-family-primary);
  text-transform: var(--button-text-case-primary);
}

textarea,
input:not([type='checkbox'], [type='radio']) {
  background-color: var(--color-input-background);
  border-color: var(--color-input-border);
}

textarea::placeholder,
input::placeholder {
  color: rgb(var(--color-input-text-rgb) / var(--opacity-muted-text));
}

textarea:not(:placeholder-shown)::placeholder,
input:not(:placeholder-shown)::placeholder {
  opacity: 0;
}

/* The declaration above is messing with buttons that have an attribute of hidden as it overwrites the display value */
.button[hidden] {
  display: none;
}

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

.button,
button.shopify-payment-button__button--unbranded {
  --button-color: var(--color-primary-button-text);
  --button-background-color: var(--color-primary-button-background);
  --button-border-color: var(--color-primary-button-border);
  --button-border-width: var(--style-border-width-primary);
  --button-focus-outline-color: var(--color-primary-button-focus-outline);
}

.button:hover,
button.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  --button-color: var(--color-primary-button-hover-text);
  --button-background-color: var(--color-primary-button-hover-background);
  --button-border-color: var(--color-primary-button-hover-border);
}

.button-secondary {
  --button-color: var(--color-secondary-button-text);
  --button-background-color: var(--color-secondary-button-background);
  --button-border-color: var(--color-secondary-button-border);
  --button-border-width: var(--style-border-width-secondary);
}

.button-secondary:hover {
  --button-color: var(--color-secondary-button-hover-text);
  --button-background-color: var(--color-secondary-button-hover-background);
  --button-border-color: var(--color-secondary-button-hover-border);
}

.button-custom {
  --button-color: var(--color-primary-button-text);
  --button-background-color: var(--color-primary-button-background);
  --button-border-color: var(--color-primary-button-border);
  --button-border-width: var(--style-border-width-secondary);
  --button-focus-outline-color: var(--color-primary-button-focus-outline);

  font-family: var(--button-font-family-primary);
  text-transform: var(--button-text-case-primary);
  border-radius: var(--style-border-radius-buttons-primary);
  outline-color: var(--button-focus-outline-color, var(--button-background-color));
}

.button-custom:hover {
  --button-color: var(--color-primary-button-hover-text);
  --button-background-color: var(--color-primary-button-hover-background);
  --button-border-color: var(--color-primary-button-hover-border);
}

/* Needed to override the default Shopify styles */
button.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background-color: var(--button-background-color);
}

.button-unstyled {
  display: block;
  padding: 0;
  background-color: inherit;
  color: var(--color-foreground);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  font-family: var(--font-paragraph--family);
  font-style: var(--font-paragraph--style);
  font-size: var(--font-paragraph--size);
}

.button-unstyled:hover {
  background-color: inherit;
}

/* Default hover dim for link-style buttons, scoped via :where() so component-specific
   hover rules (.facets__clear-all-link, .header-actions__action, etc.) still win. */
:where(.button-unstyled):hover {
  --hover-color-rgb: var(--color-foreground-rgb);

  color: rgb(var(--hover-color-rgb) / var(--opacity-70));
}

.button-unstyled--with-icon {
  color: var(--color-foreground);
  display: flex;
  gap: var(--gap-2xs);
  align-items: center;
}

.button-unstyled--transparent {
  background-color: transparent;
  box-shadow: none;
}

/* Collapsible row */

.icon-caret svg {
  transition: transform var(--animation-speed) var(--animation-easing);
}

.icon-caret--forward svg {
  transform: rotate(-90deg);
}

.icon-caret--backward svg {
  transform: rotate(90deg);
}

summary {
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding-block: var(--padding-sm);
}

summary:hover {
  color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
}

summary .svg-wrapper {
  margin-inline-start: auto;
  height: var(--icon-size-xs);
  width: var(--icon-size-xs);
  transition: transform var(--animation-speed) var(--animation-easing);
}

/* Shared plus/minus icon animations */
summary .icon-plus :is(.horizontal, .vertical) {
  transition: transform var(--animation-speed) var(--animation-easing);
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  opacity: 1;
}

details[open] > summary .icon-plus .horizontal {
  transform: rotate(90deg);
}

details[open] > summary .icon-plus .vertical {
  transform: rotate(90deg);
  opacity: 0;
}

/* Animate the UI elements in only after the view transition is complete */
.close-button {
  position: fixed;
  top: var(--margin-lg);
  right: var(--margin-lg);
  width: var(--minimum-touch-target);
  height: var(--minimum-touch-target);
  z-index: var(--layer-flat);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;

  /* For the outline radius */
  border-radius: 50%;
}

/* This triggers iOS < 16.4. The outline bug is not recognized as a lack of @supports */

@supports not (background-color: rgb(from red 150 g b / alpha)) {
  /**
    There is a bug in safari < 16.4 that causes the outline to not follow the elements border radius. This is a workaround.
    Using element selector to increase specificity.
  **/

  .close-button:focus-visible {
    outline: none;
    overflow: visible;
  }

  .close-button:focus-visible::after {
    content: '';
    position: absolute;
    inset: calc(-1 * var(--focus-outline-offset));
    border: var(--focus-outline-width) solid currentColor;
    border-radius: 50%;
    display: inherit;
  }
}

.dialog--closed .close-button {
  animation: elementSlideOutBottom calc(var(--animation-speed) * 0.5) var(--animation-easing) forwards;
}

.close-button:hover {
  background-color: transparent;
  opacity: 0.8;
}

.close-button svg {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

/* Product media */
.product-media {
  display: flex;
  flex: 1;
}

.sticky-content {
  position: sticky;
  top: var(--sticky-header-offset, 0);
  z-index: var(--layer-flat);
}

@media screen and (min-width: 750px) {
  .sticky-content--desktop,
  .sticky-content--desktop.full-height--desktop > .group-block {
    position: sticky;
    top: var(--sticky-header-offset, 0);
    z-index: var(--layer-flat);
  }
}

.price,
.compare-at-price,
.unit-price {    line-height: 1.1;
  /* white-space: nowrap; */
}

.unit-price {
  display: block;
  font-size: min(0.85em, var(--font-paragraph--size));
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
}

.tax-note.tax-note.tax-note {
  font-size: min(0.85em, var(--font-paragraph--size));
  font-weight: var(--font-paragraph--weight);
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
}

.tax-note:empty {
  display: none;
}

product-price.text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) > *:not(.tax-note) {
  margin-block: 0;
}

/* Volume pricing note should match unit-price styling (small, grey text) */
product-price .volume-pricing-note,
product-price.text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) .volume-pricing-note {
  display: block;
  font-family: var(--font-body--family);
  font-weight: normal;
  font-size: var(--font-size--xs);
  line-height: normal;
  letter-spacing: normal;
  text-transform: none;
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
}

.compare-at-price {
  color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-subdued-text));
  text-decoration-line: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgb(var(--color-rgb, var(--color-foreground-rgb)) / var(--opacity-30));
}

.price-item__group {
  display: inline-block;
}

/* Spacing style */
.spacing-style {
  --spacing-scale: var(--spacing-scale-md);

  @media screen and (min-width: 990px) {
    --spacing-scale: var(--spacing-scale-default);
  }

  /* Must disable this, when you use these with calc and another unit type, things break — see logo.liquid */
  /* stylelint-disable length-zero-no-unit */
  --padding-block: 0px;
  --padding-block-start: var(--padding-block, 0px);
  --padding-block-end: var(--padding-block, 0px);
  --padding-inline: 0px;
  --padding-inline-start: var(--padding-inline, 0px);
  --padding-inline-end: var(--padding-inline, 0px);
  --margin-block: 0px;
  --margin-block-start: var(--margin-block, 0px);
  --margin-block-end: var(--margin-block, 0px);
  --margin-inline: 0px;
  --margin-inline-start: var(--margin-inline, 0px);
  --margin-inline-end: var(--margin-inline, 0px);
}

.spacing-style,
.inherit-spacing {
  padding-block: calc(var(--padding-block-start) + var(--section-top-offset, 0px)) var(--padding-block-end);
  padding-inline: var(--padding-inline-start) var(--padding-inline-end);
  margin-block: var(--margin-block-start) var(--margin-block-end);
  margin-inline: var(--margin-inline-start) var(--margin-inline-end);
}

/* Size style */
.size-style {
  width: var(--size-style-width-mobile, var(--size-style-width));
  height: var(--size-style-height-mobile, var(--size-style-height));

  @media screen and (min-width: 750px) {
    width: var(--size-style-width);
    height: var(--size-style-height);
  }
}

/* Custom Typography style */
.custom-typography,
.custom-typography > * {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  text-transform: var(--text-transform);
  text-wrap: var(--text-wrap);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}

.custom-typography {
  h1 {
    line-height: var(--line-height--display, var(--line-height));
  }

  h2,
  h3,
  h4 {
    line-height: var(--line-height--heading, var(--line-height));
  }

  p {
    line-height: var(--line-height--body, var(--line-height));
  }
}

.custom-font-size,
.custom-font-size > * {
  font-size: var(--font-size);
}

.custom-font-weight,
.custom-font-weight > * {
  font-weight: var(--font-weight);
}

/* Border override style */
.border-style {
  border-width: var(--border-width);
  border-style: var(--border-style);
  border-color: var(--border-color);
  border-radius: var(--border-radius);
}

/* Gap scaling style */
.gap-style,
.layout-panel-flex {
  --gap-scale: var(--spacing-scale-md);

  @media screen and (min-width: 990px) {
    --gap-scale: var(--spacing-scale-default);
  }
}

.layout-panel-flex {
  display: flex;
  gap: var(--gap);
  height: 100%;
}

.shopify-block:has(> [shopify-block-empty]) {
  display: none;
}

.layout-panel-flex--row {
  flex-flow: row var(--flex-wrap);
  justify-content: var(--horizontal-alignment);
  align-items: var(--vertical-alignment);
}

.layout-panel-flex--column {
  flex-flow: column var(--flex-wrap);
  align-items: var(--horizontal-alignment);
  justify-content: var(--vertical-alignment);
}

@media screen and (max-width: 749px) {
  .mobile-column {
    flex-flow: column nowrap;
    align-items: var(--horizontal-alignment);
    justify-content: var(--vertical-alignment-mobile);
  }

  .layout-panel-flex--row:not(.mobile-column) {
    flex-wrap: var(--flex-wrap-mobile);
    height: auto;

    > .menu {
      flex: 1 1 min-content;
    }

    > .text-block {
      flex: 1 1 var(--max-width--display-tight);
    }

    > .image-block {
      flex: 1 1 var(--size-style-width-mobile-min);
    }

    > .button {
      flex: 0 0 fit-content;
    }

    > .group-block--height-fill {
      height: calc(var(--section-min-height, auto) - var(--section-height-offset, 0px));
    }
  }
}

@media screen and (min-width: 750px) {
  .layout-panel-flex {
    flex-direction: var(--flex-direction);
  }
}

/* Form fields */
.field {
  position: relative;
  width: 100%;
  display: flex;
  transition: box-shadow var(--animation-speed) ease;
}

.field__input {
  flex-grow: 1;
  text-align: left;
  border-radius: var(--style-border-radius-inputs);
  transition: box-shadow var(--animation-speed) ease, background-color var(--animation-speed) ease;
  padding: var(--input-padding);
  box-shadow: var(--input-box-shadow);
  background-color: var(--color-input-background);
  color: var(--color-input-text);
  border: none;
  outline: none;
  font-size: var(--font-paragraph--size);

  &:autofill {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
  }
}

.field__input:focus {
  box-shadow: var(--input-box-shadow-focus);
}

.field__input--button-radius {
  border-radius: var(--style-border-radius-buttons-primary);
}

.field__input--button-padding {
  padding-inline: var(--padding-3xl);
}

.field__label {
  color: rgb(var(--color-input-text-rgb) / var(--opacity-80));
  font-size: var(--font-paragraph--size);
  left: var(--input-padding-x);
  top: 50%;
  transform: translateY(-50%);
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top var(--animation-speed) ease, font-size var(--animation-speed) ease;
}

/* RTE styles */
.rte,
.shopify-policy__title {
  :is(h1, h2, h3, h4, h5, h6) {
    margin-block: clamp(1.5rem, 1em * 3.3, 2.5rem) var(--font-heading--spacing);
  }

  :first-child:is(p, h1, h2, h3, h4, h5, h6),
  :first-child:empty + :is(p, h1, h2, h3, h4, h5, h6) {
    margin-block-start: 0;
  }

  ul,
  ol {
    margin-block-start: 0;
    padding-inline-start: 1.5em;
  }

  /* Only apply margin-block-end to the higher level list, not nested lists */
  :is(ul, ol):not(:is(ul, ol) :is(ul, ol)) {
    margin-block-end: 1em;
  }

  blockquote {
    margin-inline: 1.5em 2.3em;
    margin-block: 3.8em;
    padding-inline-start: 0.8em;
    border-inline-start: 1.5px solid rgb(var(--color-foreground-rgb) / var(--opacity-25));
    font-style: italic;
    font-weight: 500;
  }

  .rte-table-wrapper {
    overflow-x: auto;
  }

  table {
    /* stylelint-disable-next-line declaration-no-important */
    width: 100% !important;
    border-collapse: collapse;
  }

  tr:not(:has(td)),
  thead {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    font-weight: bold;
    text-transform: uppercase;
  }

  tr:has(td) {
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-10));
  }

  th,
  td {
    text-align: start;
    padding-inline: var(--padding-md);
    padding-block: var(--padding-sm);
  }
}

.shopify-policy__container {
  padding-block: var(--padding-xl);
}

/* Radio buttons and checkboxes - shared base styles */
:where(input[type='radio']),
:where(input[type='checkbox']) {
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  aspect-ratio: 1;
  margin: 0;
  margin-inline-end: var(--padding-3xs);
  padding: 0;
  border: var(--checkbox-border);
  appearance: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

/* Radio buttons */
input[type='radio'] {
  border-radius: var(--style-border-radius-50);
  background: transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

:where(input[type='radio']):checked {
  border-color: var(--color-foreground);
  background: var(--color-background);
}

:where(input[type='radio']):checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--checkbox-size) / 2);
  height: calc(var(--checkbox-size) / 2);
  background: var(--color-foreground);
  border-radius: var(--style-border-radius-50);
  transition: background 0.2s ease;
}

:where(input[type='radio']):disabled {
  border-color: var(--input-disabled-border-color);
  background-color: var(--input-disabled-background-color);
  cursor: not-allowed;
}

:where(input[type='radio']):disabled:checked::after {
  background: var(--input-disabled-background-color);
}

:where(input[type='radio']):not(:disabled):hover {
  border-color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
}

:where(input[type='radio']):not(:disabled):hover:checked {
  border-color: var(--color-foreground);
  background-color: var(--color-background);
}

:where(input[type='radio']):not(:disabled):hover:checked::after {
  background: rgb(var(--color-foreground-rgb) / var(--opacity-85));
}

/* Checkboxes */
:where(input[type='checkbox']) {
  border-radius: var(--checkbox-border-radius);
  background-color: var(--color-background);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

:where(input[type='checkbox']):checked {
  background-color: var(--color-foreground);
  border-color: var(--color-foreground);
}

:where(input[type='checkbox']):checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  background-color: var(--color-background);
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.75439 10.7485L7.68601 14.5888C7.79288 14.7288 7.84632 14.7988 7.91174 14.8242C7.96907 14.8466 8.03262 14.8469 8.09022 14.8253C8.15596 14.8007 8.21026 14.7314 8.31886 14.5927L15.2475 5.74658' stroke='black' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

:where(input[type='checkbox']):not(:disabled):hover {
  border-color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
}

:where(input[type='checkbox']):not(:disabled):hover:checked {
  border-color: var(--color-foreground);
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-85));
}

:where(input[type='checkbox']):disabled {
  background-color: var(--input-disabled-background-color);
  border-color: var(--input-disabled-border-color);
  cursor: not-allowed;
}

:where(input[type='checkbox']):disabled:checked::after {
  background-color: var(--input-disabled-text-color);
}

/* Shared styles for radio buttons and checkboxes */
:where(input[type='radio']) + label,
:where(input[type='checkbox']) + label {
  display: inline;
  vertical-align: middle;
  cursor: pointer;
}

:where(input[type='radio']):disabled + label,
:where(input[type='checkbox']):disabled + label {
  color: var(--input-disabled-text-color);
  cursor: not-allowed;
}

/* Flexbox for labels wrapping radio buttons or checkboxes */
label:has(input[type='radio']),
label:has(input[type='checkbox']) {
  display: inline-flex;
  align-items: center;
  gap: var(--padding-2xs);
  cursor: pointer;
}

label:has(input[type='radio']:disabled),
label:has(input[type='checkbox']:disabled) {
  cursor: not-allowed;
}

/* ------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------ */

/* Animation declarations - to be kept at the bottom of the file for ease of find */
@keyframes grow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

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

@keyframes move-and-fade {
  from {
    transform: translate(var(--start-x, 0), var(--start-y, 0));
    opacity: var(--start-opacity, 0);
  }

  to {
    transform: translate(var(--end-x, 0), var(--end-y, 0));
    opacity: var(--end-opacity, 1);
  }
}

@keyframes slideInTopViewTransition {
  from {
    transform: translateY(100px);
  }
}

@keyframes elementSlideInTop {
  from {
    margin-top: var(--padding-sm);
    opacity: 0;
  }

  to {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes elementSlideOutTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(var(--padding-sm));
    opacity: 0;
  }
}

@keyframes elementSlideInBottom {
  from {
    transform: translateY(calc(-1 * var(--padding-sm)));
    opacity: 0;
  }

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

@keyframes elementSlideOutBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(calc(-1 * var(--padding-sm)));
    opacity: 0;
  }
}

@keyframes thumbnailsSlideInTop {
  from {
    transform: translateY(calc(-50% + var(--margin-lg)));
    opacity: 0;
  }

  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}

@keyframes thumbnailsSlideOutTop {
  from {
    transform: translateY(-50%);
    opacity: 1;
  }

  to {
    transform: translateY(calc(-50% + var(--margin-lg)));
    opacity: 0;
  }
}

@keyframes thumbnailsSlideInBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

@keyframes thumbnailsSlideOutBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes search-element-slide-in-bottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes search-element-slide-out-bottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

@keyframes dialogZoom {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

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

@keyframes thumbnail-selected {
  0%,
  100% {
    box-shadow: 0 0 0 2px transparent;
    scale: 0.9;
  }

  50% {
    box-shadow: 0 0 0 2px #000;
    scale: 1;
  }
}

@keyframes backdropFilter {
  from {
    backdrop-filter: brightness(1);
  }

  to {
    backdrop-filter: brightness(0.75);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlideInTop {
  from {
    transform: translateY(var(--padding-sm));
    opacity: 0;
  }

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

@keyframes modalSlideOutTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(var(--padding-sm));
    opacity: 0;
  }
}

/* Slideshow Arrow Hover Animation - must stay in base.css for proper CSS cascade */

:not(.media-gallery--carousel)
  > :is(slideshow-component:hover, slideshow-component:focus-within):not(:has(slideshow-controls:hover))
  > slideshow-container
  > slideshow-arrows
  .slideshow-control {
  animation: arrowsSlideIn var(--animation-speed) var(--animation-easing) forwards;
}

@keyframes arrowsSlideIn {
  from {
    transform: translate(var(--padding-sm), 0);
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.section-resource-list,
.section-carousel {
  row-gap: var(--gap);
}

.section-resource-list__content {
  display: flex;
  flex-direction: column;
  align-items: var(--horizontal-alignment);
  gap: var(--gap);
  width: 100%;
}

.section-resource-list__content:empty {
  display: none;
}

.section-resource-list__header:is(:empty, :has(.group-block-content:empty)),
.section-resource-list__content:empty {
  display: none;
}

:where(.section-resource-list.section--full-width) product-card[data-product-transition] > .group-block,
:where(.section-carousel.section--full-width) product-card[data-product-transition] > .group-block {
  @media screen and (max-width: 749px) {
    padding-inline: max(var(--padding-xs), var(--padding-inline-start))
      max(var(--padding-xs), var(--padding-inline-end));
  }
}

/* Base styles */
.group-block,
.group-block-content {
  position: relative;
}

.group-block:has(> video-background-component),
.group-block:has(> .background-image-container) {
  overflow: hidden;
}

.group-block-content {
  height: 100%;
  width: 100%;
}

/* Container styles */
.section-content-wrapper.section-content-wrapper:where(.layout-panel-flex) .group-block--fill {
  flex: 1;
}

/* Flex behavior for width variants */
.layout-panel-flex--row > .group-block--width-fit {
  flex: 0;
}

.layout-panel-flex--row > .group-block--width-fill {
  flex: 1;
}

.layout-panel-flex--row > .group-block--width-custom {
  flex-basis: var(--size-style-width);
}

/* Dimension utilities - Height */
.group-block--height-fit {
  height: auto;
}

.group-block--height-custom,
.group-block--height-fill {
  height: var(--size-style-height);
}

/* Flex behavior for height variants */
.layout-panel-flex--column > .group-block--height-fit {
  flex: 0 1 auto;
}

.layout-panel-flex--column > .group-block--height-fill {
  flex: 1;
}

.layout-panel-flex--column > .group-block--height-custom {
  flex-basis: var(--size-style-height);
}

/* Animation transitions */
.transition-background-color {
  transition: background-color var(--animation-speed-medium) ease-in-out;
}

.transition-transform {
  transition: transform var(--animation-speed-medium) var(--animation-timing-bounce);
}

.transition-border-color {
  transition: border-color var(--animation-speed-medium) var(--animation-timing-hover);
}

/* Global scrollbar styles */

/* Webkit browsers */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-40));
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
  transition: background-color 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-60));
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.product-card:hover,
.collection-card:hover,
.predictive-search-results__card--product:hover,
.predictive-search-results__card:hover {
  position: relative;
  z-index: var(--layer-raised);
  transition: transform var(--hover-transition-duration) var(--hover-transition-timing),
    box-shadow var(--hover-transition-duration) var(--hover-transition-timing);
}

/* Prevent iOS zoom on input focus by ensuring minimum 16px font size on mobile */
@media screen and (max-width: 1200px) {
  input,
  textarea,
  select,
  /* Higher specificity to override type preset classes like .paragraph, .h1, etc. */
  .paragraph.paragraph input,
  .paragraph.paragraph textarea,
  .paragraph.paragraph select,
  .h1.h1 input,
  .h1.h1 textarea,
  .h1.h1 select,
  .h2.h2 input,
  .h2.h2 textarea,
  .h2.h2 select,
  .h3.h3 input,
  .h3.h3 textarea,
  .h3.h3 select,
  .h4.h4 input,
  .h4.h4 textarea,
  .h4.h4 select,
  .h5.h5 input,
  .h5.h5 textarea,
  .h5.h5 select,
  .h6.h6 input,
  .h6.h6 textarea,
  .h6.h6 select {
    font-size: max(1rem, 100%);
  }
}

/* When the header is transparent, and when there is no header-section below it, offset the first main-section with
 * the height of the header
 */
main > .shopify-section:first-child .section:not(.disable-section-top-offset) {
  &.spacing-style,
  .spacing-style {
    --section-top-offset: calc(var(--header-height) * var(--transparent-header-offset-boolean));

    /* Any nested sections should not be offset */
    :is(.spacing-style, .inherit-spacing) {
      --section-top-offset: 0px;
    }
  }

  /* Make sticky content immediately stick to the top of the page */
  .sticky-content {
    margin-top: calc(var(--header-height) * var(--transparent-header-offset-boolean) * -1);
  }
}


a.mega-menu__link.mega-menu__link--parent,
li.mega-menu__section-title{
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(176, 169, 159);
    margin-bottom: 1.25rem;
}

.menu_product-main{
      display:flex;
      align-items:center;
      gap:14px;
  }

  .product_image{
      position:relative;
      width:72px;
      min-width:72px;
      height:72px;
      border-radius:0.75rem;
      overflow:hidden;
  }

  .prd_img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
  }

  .product_badge{
      position:absolute;
      top:6px;
      left:6px;
      background:#3c342d;
      color:#fff;
      font-size:10px;
      font-weight:600;
      line-height:1;
      padding:4px 8px;
      border-radius:20px;
      white-space:nowrap;
  }

  .product_details{
      display:flex;
      flex-direction:column;
      justify-content:center;
  }

  .product_price {
    font-size: 0.75rem;
    color: rgb(155, 149, 144);
    margin-top: 3px;
    font-weight: 500;
  }

  .product_title{
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgb(13, 13, 13);
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  li.child_link.product_list {
    padding: .75rem;
}

.product_list:hover{
  background-color:#f8f6f2;
  width:100%;
}
.menu-list__submenu-inner li.mega-menu__column[data-column-title="Banner"] {
    display: none;
}
.header__row.header__row--bottom{min-height:44px;    background: rgba(248, 246, 242, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #E9E9E9;}
.header__row--top{border-bottom:solid 1px #DFDFDF}
.header__row--bottom .header__columns {
    padding:  0;
}
ul.shop_by-diet {
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.trending__wrap {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;list-style:none;gap:5px;
}
ul.trending__wrap li a.mega-menu_tab{background: rgb(242, 240, 236);
    color: rgb(74, 69, 64);
    letter-spacing: 0.01em;
    white-space: nowrap;    font-size: .75rem;
    line-height: 1rem;border-radius:9999px; padding:.55rem .375rem}
ul.trending__wrap li.mega-menu__section-title  a {background:transparent}
li.mega-menu__section-title {
    min-width: 100%;
    flex-basis: 100%;margin: 10px 0 0 0;
}
.mega-menu__column {min-width:fit-content}

search-button.search-action--bar button {
    width: 100%;
    border: 1.5px solid #e9e9e9;
    background: #faf9f7;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-radius: 9999px;
    cursor: pointer;
}

search-button.search-action--bar {    padding-left: 3rem;
    width: 100%;
}

span.menu-list__link-title {
    display: flex;
    align-items: center;
    gap: 6px;
}
.collection-card__content .text-block {
    background: transparent;
}
.collection-card__content .text-block p{ font-family: 'neue-haas-grotesk';font-size:32px; line-height:32px; letter-spacing:-0.96px; color:#fff; font-weight:800;}
.collection-card--image-bg .collection-card__image .overlay.overlay--solid {background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.08) 55%, transparent 100%);}
.eyebrow, .eyebrow p{font-size:10.4px; font-weight:500; color:#888; text-transform:uppercase; letter-spacing:2.4128px; line-height:13.92px}
.sec-head h2{
    font-family: 'neue-haas-grotesk';
    font-size: 112px;
    line-height: 0.88;
    letter-spacing:-0.04em;
}
.sec-head-s h2{
       font-family: 'Neue Haas Grotesk Display Pro';   font-size: 76.8px;
    line-height: 0.95;letter-spacing: -0.03em; font-weight:bold;
}
.build-box-info .sec-head h2 {
  font-size:72px; font-family: 'Neue Haas Grotesk Display Pro';      font-weight: 900;
}
.build-box-info a{gap:10px;}
.section-header .sec-head h2{
      font-family: 'neue-haas-grotesk';
    font-size: 112px;
    line-height: 100.8px;
    letter-spacing: -4.48px;
}
.sec-head-s h2 em strong,
.sec-head h2 em strong {
    color: #C8A96E;
}
.underline-link a {
    letter-spacing: 0.9984px;
    text-transform: uppercase;
    color: #9B9590;
    font-size: 12.48px;
    text-decoration: underline;
    text-underline-offset: 5px;margin-left:-0.25rem;padding-right:0.25rem;
}

.underline-link a:after {
    content: "→"; margin-left: 5px;transition-duration: .3s;display:inline-block;
}
.underline-link a:hover::after {
    transform: translateX(0.25rem);
}
.collection-card__content .fc-card-slogan,.collection-card__content .fc-card-slogan p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500!important;  line-height: 1.1;
    letter-spacing: .05em;
}
.collection-card__content a.button-unstyled {
    padding-left: 8px;
    color: #FF4FA0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;    opacity: 0;transform:translateY(10px);
}
.collection-card__content {bottom:0px;}
.collection-card:hover .collection-card__content a.button-unstyled {opacity:1; transform:translateY(0);}
.collection-card {
  transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}
.resource-list__carousel .resource-list__item{    padding:15px 0 40px; position:relative;}
.collection-card:hover{transform:translateY(-10px);box-shadow: rgba(0, 0, 0, .25) 0 28px 64px; }
.collection-card:hover:before{content:"";box-shadow: rgba(0, 0, 0, .25) 0 28px 64px; width:100%; height:100%; position:absolute; top:0; left:0;}
/* .section-text_one{max-width:250px;} */
.small-box {
    max-width: 28ch !important;
}
.section-text_one p{font-size: 0.875rem;
  /* color: rgba(255, 255, 255, 0.35)!important; */
  line-height: 1.7;
  text-align: right;}
/* .favorites-sec a.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;display:flex; align-items:center;column-gap:10px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
} */
.favorites-sec a.button-secondary:after{content:""; }
.favorites-sec a.button-secondary:hover:after{content:"→";display:inline-block}
.slideshow-section .slide__image-container .overlay.overlay--solid {
    background:
        /* Left dark */
        linear-gradient(
            90deg,
            rgba(6,6,6,.82) 0%,
            rgba(6,6,6,.55) 30%,
            rgba(6,6,6,.18) 58%,
            rgba(6,6,6,0) 100%
        ),

        /* Bottom dark */
        linear-gradient(
            0deg,
            rgba(6,6,6,.72) 0%,
            rgba(6,6,6,.25) 35%,
            rgba(6,6,6,0) 70%
        ),

        /* Right dark */
        linear-gradient(
            270deg,
            rgba(6,6,6,.45) 0%,
            rgba(6,6,6,0) 35%
        );
}
.hero-eyebrow p {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(200, 169, 110, 0.75);
    min-width: fit-content;
}

.hero-eyebrow p:before {
    content: "";
    height: 1px;
    width: 50px;
    background: rgba(200, 169, 110, 0.75);
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -2px;
}
.slideshow-section slideshow-component .sec-head h2 {color:#fff;}
.slideshow-section slideshow-component .sec-head h2 em {
    display: block;
}
.hero-text p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.85;
    font-weight: 400;
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-btns a {
    width: 100%;
    max-width: 222px;
    padding: 14px;backdrop-filter: blur(12px);    letter-spacing: 0.1em;
    font-size: 12px;
}
.hero-btns a.button-custom{color:rgba(255,255,255,0.82)}
.build-box-text p {
    color: #9B9590;
    line-height: 1.75;
    max-width: 36ch;
    font-size: 1rem;
    margin-bottom: 3rem;
}
.build-box-lines >.group-block-content > .group-block {
    border-bottom: solid 1px #e9e9e9;
}
.build-box-lines >.group-block-content > .group-block .ol {font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #C8A96E;
    min-width: 24px;}
    .ol-text h5 {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0D0D0D;
    letter-spacing: -0.01em;
}

.ol-text p {
    font-size: 0.75rem;
    color: #9B9590;
    margin-top: 0.1rem;
}
.button,.button-secondary,.button-custom{display:flex;align-items:center;column-gap:8px; justify-content:center}
.button:after,.button-secondary:after,.button-custom:after{
  content:""; inline-block;transition-duration: .3s;
}
.button:hover:after,.button-secondary:hover:after,.button-custom:hover:after{
 transform: translateX(0.25rem);
}


.candy-text-d p{    color: rgba(255, 255, 255, 0.42);
    line-height: 1.85;
    max-width: 40ch;
    font-size: 1rem;
    margin-bottom: 3.5rem;}
    .gray-tabs-sec{}
    .tabs-gray-t{    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);    white-space: nowrap;
    backdrop-filter: blur(8px);}
    .tabs-gray-t .html_wrap{    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72); font-family:inter;    display: block;
    margin: 0 auto;
    text-align: center;}
 .tabs-gray-t .html_wrap > span{font-size: 0.62rem;margin-left:8px;font-weight: 700;}
.r-sub .html_wrap > span,.r-sub  .html_wrap{font-weight: 500;    color: #E8192C;}
.y-sub .html_wrap > span,.y-sub  .html_wrap{ font-weight: 500;   color: #FFD600;}
 .b-sub .html_wrap > span,.b-sub  .html_wrap{ font-weight: 500;   color: #9B30FF;}
 .o-sub .html_wrap > span,.o-sub  .html_wrap{ font-weight: 500;   color: #FF6B00;}
.g-sub .html_wrap > span,.g-sub  .html_wrap{font-weight: 500; color: #00B050;} 
.p-sub .html_wrap > span,.p-sub  .html_wrap{ font-weight: 500;   color: #FF4FA0;}
.gift-boxes-g{ border-bottom: 1px solid #E9E9E9;}



.join-section .text-block h2{    font-size: clamp(2.25rem, 4vw, 4rem);    font-family: 'neue-haas-grotesk';
    letter-spacing: -0.03em;
    line-height: 0.95;    font-weight: 900;}
    .join-left-img{posotion:relative;}
    .join-left-img:before{content:"";position:absolute;top:0; left:0; width:100%; height:100%;  background: linear-gradient(to right, transparent 60%, #FAF9F7 100%);    pointer-events: none;
    z-index: 1;}
.join-right{padding-right: 20px;}

.footer-content .menu__heading{opacity:.35;     font-weight: normal;   font-size: 11px;}
.footer-content .menu__item a{opacity:.45}
.sweet-words-s .star-rating_wrap{    margin-bottom: 5px;}
.star-rating_wrap svg {
    width: 17px;
    height: 17px;
    margin-right: 3px;
}
.rating-text-i strong{font-size:16px;      color: #0D0D0D;  margin-right: 7px;}
.rating-text-i.text-block p{    font-size: 0.85rem;
    color: #9B9590;}
.rating-section-wrap > .group-block-content{    background: #E9E9E9 !important;
    align-items: stretch;gap: 1px;}
.rating-section-wrap .group-block-content{    background: #fff;
    flex-wrap: wrap;}
    .rating-name{border-top: 1px solid #E9E9E9;margin-top: 12px;
    padding-top: 15px;}
.rating-name{flex-direction: column;}
.rating-section-wrap .layout-panel-flex--row > .group-block--width-fill {
    flex: 1 0 49%;
}
.rating-section-wrap > .group-block-content > .group-block > .group-block-content{ padding: 40px;}
.rating-name > .group-block .group-block-content{flex-direction: column;display: flex;}
.rating-section-wrap .star-rating_wrap svg {
    width: 13px;
    height: 14px;}
  .rating-section-wrap .text-block.custom p{    line-height: 1.65;}
  .rating-section-wrap .text-block + .text-block p{
    color: #9B9590;
    font-size: 0.7rem;
    margin-bottom: 0.1rem;}
    .footer-content .menu__heading__default{    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em;}
     .b-text1 p{display: inline-block;
    padding: 4px 14px;
    border-radius: 99px;
    border: 1px solid rgba(200, 169, 110, 0.4);
    color: rgb(200, 169, 110);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;}
    .b-text2 p{font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    max-width: 480px;
    margin: 0px auto;
    line-height: 1.6;}
    .b-text-head h2{ font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900; font-family: 'Neue Haas Grotesk Display Pro';
    line-height: 0.95;
    margin-bottom: 20px;   color: rgb(200, 169, 110);
    font-style: italic;}

    .box-steps .box-step.completed span {
    color: transparent!important;
    position: relative;
    background: #000!important;
}
.price-item--regular.compare-at-price{font-size:14px; font-weight:500;}
.box-steps .box-step.completed span:after {
    content: "✓";
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
}
.candy-step .candy-product__actions .quantity-box {
    display: none;
}
.candy-step .candy-product__actions .quantity-box.show {
    display: flex;
}
.candy-product:has(.quantity-box.show) {
    border: 2px solid rgb(13, 13, 13);
}
.candy-product-count {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgb(13, 13, 13);
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 800;
    display: none !important;
    align-items: center;
    justify-content: center;
}
.gift_msg-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 860px;
    margin: 0px auto 48px;
}
 .gift_msg-main {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 28px;
    border: 1.5px solid rgb(229, 224, 216);
}
.gift_msg-main textarea {
    width: 100%;
    border: 1.5px solid rgb(229, 224, 216);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: rgb(13, 13, 13);
    background: rgb(248, 246, 242);
    resize: none;
    outline: none;
    font-family: inherit;
    line-height: 1.6;
    transition: border-color 0.2s;
}
.msg_title p{    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(155, 149, 144);
    margin-bottom: 12px}
 .max-length {    font-size: 11px;
    color: rgb(155, 149, 144);
    margin-top: 6px;
    text-align: right;
}
.gift_msg-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gift_msg-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.5px solid rgb(229, 224, 216);
    background: rgb(248, 246, 242);
    color: rgb(13, 13, 13);
    cursor: pointer;
    text-align: left;
    transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 13px;
    font-weight: 600;
}
.active.gift_msg-item{    border: 1.5px solid rgb(13, 13, 13);
    background: rgb(13, 13, 13);
    color: rgb(255, 255, 255);}
.foo-g-text p{    color: #ffffff73;}
.footer-utilities .utilities{        border-top: 1px solid rgba(255, 255, 255, 0.08);}
.footer-utilities__text, .footer-utilities .footer-utilities__text a, footer-utilities anchored-popover-component button{
    color: rgba(255, 255, 255, 0.25);
}
.message_step .box-selector__button button[data-msg-continue]{    background: rgb(200, 169, 110) !important;
    color: rgb(255, 255, 255) !important;}
    .box-summary__candy {    display: flex;
    align-items: center;
    gap: 10px;
}
.box-summary__candy-image {
    max-width: 35px;
    border-radius: 8px;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgb(229, 224, 216);
}
.box-summary__candy-info{    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;}
    .box-summary__candy-info span{    font-size: 12px;
    font-weight: 800;
    color: rgb(13, 13, 13);
    flex-shrink: 0;}
    .box-summary__list{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 @keyframes floatBg {
                    0%, 100% {
                        transform: translateY(0px) rotate(0deg);
                    }

                    50% {
                        transform: translateY(-16px) rotate(5deg);
                    }
                }

                @keyframes boxFloat {
                    0%, 100% {
                        transform: translateX(-50%) rotateX(8deg) rotateY(-12deg) translateY(0px);
                    }

                    50% {
                        transform: translateX(-50%) rotateX(8deg) rotateY(-12deg) translateY(-10px);
                    }
                }
.box-summary__image {    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) rotateX(8deg) rotateY(-12deg);
    transform-style: preserve-3d;
    width: 200px;
    height: 160px;
    animation: 4s ease-in-out 0s infinite normal none running boxFloat;
}
.box-summary__prod-list {
    display: flex;
    flex-wrap: wrap;    gap: 4px;
    padding: 8px 12px;
    max-width: 160px;object-fit: cover;
    justify-content: center;
}
.box-summary__product-image{width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;}
    .box-summary__prod-wrap{position: absolute;
    inset: 0px;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(255, 240, 242) 100%);
    border-radius: 16px;
    border: 2px solid rgba(232, 25, 44, 0.133);
    box-shadow: rgba(232, 25, 44, 0.19) 0px 20px 60px, rgba(0, 0, 0, 0.1) 0px 4px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;}
    .box-summary__inner{display: flex;
    flex-direction: column;
    align-items: center;    text-align: center;
    justify-content: center;
    gap: 24px;}
    .box-summary__i{position: relative;
    width: 260px;
    height: 220px;
    perspective: 800px;}
    .box-summary__preview {    background: rgb(255, 255, 255);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1.5px solid rgb(229, 224, 216);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 24px;}
    .box_ocassion-icon{    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 22px;
    filter: drop-shadow(rgba(0, 0, 0, 0.15) 0px 2px 4px);}
    .box-summary__fill{    width: 200px;    margin: 0 auto;
    text-align: center;}
    .b-summary__fill-text{    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(155, 149, 144);
    font-weight: 600;}
    .b-summary__fill-text span{}
    .progress-bar{height: 6px;
    background: rgb(238, 235, 228);
    border-radius: 99px;
    overflow: hidden;
      background: linear-gradient(90deg, rgb(232, 25, 44), rgba(232, 25, 44, 0.6));
    border-radius: 99px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);}
    .box-summary__info h3{    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgb(13, 13, 13); margin:0;}
    .box-summary__info p{margin:0;font-size: 13px;
    color: rgb(155, 149, 144);
    margin-top: 2px;}
    .box-summary__card{    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 24px;
    border: 1.5px solid rgb(229, 224, 216);}
    .box-summary__details{display: flex;
    flex-direction: column;
    gap: 16px;}
    .box-summary__card-title{    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(155, 149, 144);
    margin-bottom: 14px;}
    .box-summary__row{    display: flex;
    gap: 10px;    font-size: 13px;justify-content: space-between;}
    .box-summary__row span{    color: rgb(107, 101, 96);}
    .box-summary__row strong{    font-weight: 700;
    color: rgb(13, 13, 13);}
    .box-summary{    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0px auto 48px;
    align-items: start;}
    .box-summary__inner1{    display: flex;
    flex-direction: column;
    gap: 10px;}
    .animat_right{    position: absolute;
    top: 8px;
    right: -20px;
    width: 20px;
    height: 100%;
    background: linear-gradient(rgba(232, 25, 44, 0.25) 0%, rgba(232, 25, 44, 0.125) 100%);
    border-radius: 0px 8px 8px 0px;
    transform: skewY(-45deg);
    transform-origin: left top;}
    .animat_bottom{position: absolute;
    bottom: -12px;
    left: 8px;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, rgba(232, 25, 44, 0.19) 0%, rgba(232, 25, 44, 0.063) 100%);
    border-radius: 0px 0px 8px 8px;
    transform: skewX(-45deg);
    transform-origin: right top;}
    .animat_m-shadow{position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-40%);
    width: 180px;
    height: 24px;
    background: radial-gradient(rgba(0, 0, 0, 0.18) 0%, transparent 70%);
    filter: blur(8px);}
    .box-summary__total{    background: rgb(13, 13, 13);
    border-radius: 20px;
    padding: 24px;
    color: rgb(255, 255, 255);}
    .box-summary__total-info{    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;}
    .box-summary__add-to-cart{    width: 100%;
    padding: 16px 0px;
    border-radius: 12px; height:52px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    background: rgb(200, 169, 110);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: rgba(200, 169, 110, 0.4) 0px 4px 20px;
    transform: scale(1);}
    .box-summary__total p{margin-top: 12px;
    text-align: center; 
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.06em;}
   .title-total {
    gap: 8px;
    display: flex;
    flex-direction: column;
}
  .box-summary__add-to-cart.loader{font-size:0;}
.title-total strong{font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: rgb(200, 169, 110);}
    .box-summary__breakdown span{    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);}
    .box-summary__candy-info strong{    font-size: 12px;
    font-weight: 700;
    color: rgb(13, 13, 13);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;}
    .box-summary__breakdown strong{    font-weight: normal;}
    .header__row.header__row--top{    background: rgba(248, 246, 242, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #E9E9E9;}
    /* {    background: rgb(250, 249, 247);
    box-shadow: rgba(0, 0, 0, 0.12) 4px 0px 24px;} */
.popular_search {
    margin: 0 0 20px;
    padding-inline: var(--padding-xl);
}
.utilities a, .utilities button {
    color: rgba(255, 255, 255, 0.25);
}
.favorites-sec .eyebrow p{    font-weight: 700;
    color: #B0A89E;    font-size: 0.58rem;}
.favorites-sec .section-header .sec-head h2{    font-family: 'Neue Haas Grotesk Display Pro';letter-spacing: -0.04em;}
.favorites-sec .section-header .sec-head h2 strong{    font-weight: 500;}
.foo-1 .image-block{    max-width: 30px;}
 .favorites-sec .underline-link a{color: #0D0D0D;    letter-spacing: 0.1em;    font-size: 12px;font-weight: 700;    margin-left: 0;}
.made-by-section .card-gallery slideshow-arrows .slideshow-control{    gap: 0;  padding: 0;}
.everyone-sec-wrap .card-gallery .product-media:before{content:""; position:absolute; pointer-events: none;  background: linear-gradient(to top, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.08) 55%, transparent 100%); height:100%; width:100%; top:0; left:0;}
.everyone-sec-wrap .product-card__content .rte.rte{font-size: 0.65rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    opacity: 1;}
   .everyone-sec-wrap .contents.user-select-text .paragraph.rte{font-family: "Neue Haas Grotesk", "Inter", sans-serif;
   
   }
   .product-card__content > .group-block{position:absolute; bottom:20px; left:20px;    max-width: max-content;}
   .everyone-sec-wrap .p-sec1 .product-card__content .rte.rte{bottom: 74px;}
   .everyone-sec-wrap .p-sec1 .contents.user-select-text .paragraph.rte{bottom:34px;}
   .everyone-sec-wrap .p-sec1 .contents.user-select-text .paragraph.rte p {font-size: clamp(1.4rem, 2.5vw, 2rem);}
     .everyone-sec-wrap .contents.user-select-text .paragraph.rte p{ text-transform: none;font-weight: 800; font-family: "Neue Haas Grotesk", "Inter", sans-serif; line-height: 1.1;font-size: 16px;letter-spacing: -0.025em; color: #fff;}
.product-grid__card.product-grid__card{    position: relative;}
.everyone-sec-wrap product-price.text-block{
    width: auto;
    text-align: right;
    color: #FF4FA0;
    font-size: 0.85rem;
    font-weight: 800;}
.everyone-sec-wrap product-price.text-block *{ _color: #FF4FA0;
    font-size: 0.85rem;
    font-weight: 800;}
    .product-card__content  product-price .price{    font-size: 16px;
    font-weight: 900;}
.product-card__content .paragraph.rte p{font-family: "DM Sans", "Manrope", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #0D0D0D;
    letter-spacing: -0.025em;
    line-height: 1.2; 
    margin-bottom: 0.3rem}
    .full-collection-sec{    border-top: 1px solid #EDE8E2;}
.contents .text-block p{font-family: "DM Sans", "Manrope", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 0.3rem;}
    .quick-add button.quick-add__button.add-to-cart-button:hover {
    scale: 1;
}
.product-details product-price.text-block{    padding: 1.25rem;    border-radius: calc(var(--radius) * 3);  margin-top:2rem;    background: var(--hoc-warm);
    border: 1px solid var(--hoc-border);}
.product-details {
> .group-block{max-width:500px;
        margin-right: auto;}
 .price-item__group.price{    font-weight: 700;
    color: rgb(13, 13, 13);
    font-size: clamp(2.5rem, 5vw, 3.5rem);        font-family: 'Neue Haas Grotesk Display Pro';
    letter-spacing: -0.04em;
    line-height: 1;}
div[ref="priceContainer"]{    display: flex;gap: .75rem;align-items: flex-end;}
button.shopify-payment-button__button{background: transparent;
    color: rgb(13, 13, 13);
    border: 1.5px solid rgb(13, 13, 13);
    letter-spacing: 0.04em;
    font-size: 0.875rem;    font-weight: 700;line-height: 1.25rem;    border-radius: 9999px;        text-transform: capitalize;        height: 49px;
        min-height: 49px;}
 }
 .free-sh-sec{}
 .taxes-text{    font-size: 0.75rem;
    color: rgb(155, 149, 144);
    margin-top: 0.5rem;}
 .saved_ammount{     margin-top: 10px;    font-size: .75rem;
    line-height: 1rem;padding-top: .25rem;    width: auto !important;
    padding-bottom: .25rem;    padding-left: .75rem;
    padding-right: .75rem;border-radius: 9999px;   background: rgb(240, 255, 244);
    color: rgb(0, 176, 80);
    font-weight: 800;
    letter-spacing: 0.02em;}
.price-item--regular.compare-at-price {font-size: 1.125rem;
    color: rgb(197, 192, 184);
    text-decoration: line-through;
    font-weight: 600;
}
.product-form-buttons button.add-to-cart-button{    max-width: inherit;}
.product-mfem-wrapper{    background: rgb(13, 13, 13);margin: 3rem 0;
    padding: 80px 0px;
    overflow: hidden;}
.product-mfem-main .header span{font-size: 0.65rem;    display: block;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(107, 101, 96);
    margin-bottom: 0.75rem;}
    .product-mfem-main .header{    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;}
.product-mfem-main .title{    font-size: 40px;
    color: #fff;margin: 0 0 3rem;
    font-weight: 700;
    font-family: 'Neue Haas Grotesk Display Pro';}
.product-mfem-items {
    padding-left: 3rem;
    padding-right: 3rem;    display: flex;    gap: 1rem;
    padding-bottom: .5rem;    align-items: flex-start;
    overflow-x: auto;
}
.product-mfem-item {
    position: relative;
    z-index: 1;
}
.product-mfem-item img{border-radius:36px; 
    object-fit: cover;}
.product-mfem-item:before{content:""; border-radius: 36px;   background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%); position: absolute; width:100%; height:100%;top: 0;
    left: 0;}
.product-mfem-item .text{    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(8px);
    letter-spacing: 0.06em;    position: absolute; 
    bottom: 20px;
    border-radius: 9999px;    left: 20px;
    text-transform: uppercase;
    font-size: 0.6rem;    font-weight: 700;padding:6px 12px;}
.recipe_items{grid-template-columns: repeat(4, minmax(0, 1fr));       padding: 0 3rem; gap: 1.25rem;display: grid;}
.recipe_item{    background: rgb(255, 240, 245);
    border: 1px solid var(--hoc-border);
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;    padding: 1.5rem;    border-radius: calc(var(--radius) * 3);}
.recipe_item .heading{ font-weight: 800;
    color: rgb(13, 13, 13);
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;}
.recipe_item  img{    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;max-width:40px;}
.recipe_item .timer{    background: rgba(13, 13, 13, 0.06);
    color: rgb(107, 101, 96);
    letter-spacing: 0.04em;    font-weight: 700;    font-size: .75rem;
    line-height: 1rem; padding:6px 12px; max-width:max-content;    border-radius: 9999px;}
   .recipe_item .text p{    color: rgb(107, 101, 96);
    font-size: 0.8125rem;
    line-height: 1.7;
    margin-bottom: 1rem;}
.header-title-like h6{font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;}
.header-title-like h6 strong{font-size:40px;    font-weight: 800;    color: rgb(13, 13, 13);text-transform: none;
    letter-spacing: 0;}
  .product-recommendations .product-card__content product-price .price,
    .product-recommendations .contents .text-block p{    font-size: 14px;}
    .page-wrapper--drawer-open:before{content:""; background-color: rgb(0 0 0 / .5);    position: fixed;
    z-index: 111; width:100%; height:100%; pointer-events:none;    backdrop-filter: blur(2px);}
#shopify-section-cart-drawer-section{    position: relative;
    z-index: 111;}

.theme-drawer__dialog .theme-drawer__close-button{border: 0; box-shadow: none;}
.theme-drawer__dialog .theme-drawer__title {
    font-size: 16px;
}
.cart-drawer__inner .quantity-selector svg * {
    stroke-width: 1px;
}
.cart-drawer__inner .quantity-selector input[type=number]{font-size:13px;width: 25px;
    min-width: 25px;}
.cart-drawer__inner .quantity-selector-wrapper{        max-width: 78px;}
.cart-items__quantity .quantity-selector{border-radius: 120px;}
.cart-drawer__inner .cart-items .quantity-selector button{width:30px;}
.cart-items__variant *,
.cart-items__unit-price-wrapper .cart-items__unit-price-s{font-size: 0.6875rem !important;
    color: rgb(155, 149, 144);}
.cart-drawer__inner .cart-items__price text-component{    font-weight: 600;}
.cart-drawer__inner .cart-items__details .button.cart-items__remove{column-gap: 0;
    align-items: flex-start;
    color: rgb(155, 149, 144);
    padding: 5px;
    position: absolute;
    right: 12px;
    top: 7px;
    justify-content: flex-end;}
.cart-drawer__inner .cart-items__quantity{    justify-content: space-between;
    width: 100%;}
.predictive-search-form .cart-btn.sold-out.button-secondary,
.predictive-search-form .cart-btn.add-to-cart {
    padding: 0;
    font-size: 12px;
    text-transform: none;
    padding: 6px 10px;
    width: 100%;
    border: 0;
    column-gap: 0; 
}
.mega-menu__column ul li .mega-menu__link{    transition: all .3s !important;}
.predictive-search-form .cart-btn.sold-out.button-secondary{    opacity: .3;
    pointer-events: none;}
.mega-menu__column ul.trending__wrap li .mega-menu__link{    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(176, 169, 159);
    margin-bottom: 1.25rem;}
/*---pdp accordian section-----*/

   .section-featured-wrap .title_icon .icon img {
    width: 24px;
    height: auto;
}
.section-featured-wrap .accordion_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
        padding-top: 1.25rem;
    padding-bottom: 1.25rem;    cursor: pointer;
}
.section-featured-wrap .accordion_link .title_icon {
    display: flex;
    column-gap: 12px;
}
.section-featured-wrap {
    display: grid;
    grid-template-columns: 1fr ;
    align-items: center;
    gap: 3rem;
}
.section-featured-wrap .section-accordion-items .accordion-item {

    border-bottom: solid 1px #e9e9e9;
}
.section-featured-wrap .section-accordion-items .accordion-item:first-child {
    border-top: solid 1px #e9e9e9;
}
.section-featured-wrap .section-accordion-items  .accordion-item.active{padding-bottom:1.5rem}
span.plus-svg{
  display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e9e9e9;
    color: rgb(107, 101, 96);
    font-size: 16px;
    font-weight: 300;
    flex-shrink: 0;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: rotate(0deg);
}
.accordion-item.active span.plus-svg{
  background:rgb(13, 13, 13);color:#fff;
      transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);    font-size: 21px;
    transform: rotate(45deg);
}
.accordion_content .info_banners .info_banner {
    border: 1px solid #FFD6E8;
    padding: 1rem;
    border-radius: 1.5rem;
}
.free_shipping{background: rgb(240, 253, 244);
    border-bottom: 1px solid var(--hoc-border);    padding-top: .75rem;
    padding-bottom: .75rem;padding-left: 1.25rem;
    padding-right: 1.25rem;}
    .free_shipping p{font-size: 0.75rem;
    font-weight: 600;
    color: rgb(22, 163, 74); margin:-10px 0 15px;text-align: center;
    margin: 0 auto;}
.accordion_content ul.table_wrap {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
}

.accordion_content ul.table_wrap li.table_row {
    display: flex;
    justify-content: space-between;
    border: solid 1px #e9e9e9;
    padding: .625rem 1rem;
    border-radius: 1.5rem;
}
.section-featured-wrap .accordion_link span.icon_title {
    font-weight: bold;
}
.section-featured-wrap .accordion_content ul.iwt_wrap {
    padding: 0;
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.section-featured-wrap .accordion_content .iwt_icon img , .section-featured-wrap .accordion_content .iwt_icon {
    width: 24px;
    height: auto;
}

.section-featured-wrap .accordion_content .iwt_row {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.delivery-box{ display: flex;     gap: 12px;  align-items: flex-start; }
.pincode-wrap{       flex-direction: column; background: rgb(240, 255, 244);
    border: 1px solid rgb(195, 240, 208);    padding: 1rem 1.5rem;border-radius:36px;gap:12px;    display: flex;    align-items: flex-start;    margin-bottom:0;}
 .tag_list {
    padding: 0;
    margin: 0 0 15px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.delivery-icon{    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 1px;}
    .delivery-title{    font-weight: 800;
    color: rgb(13, 13, 13);
    font-size: 0.875rem;
    margin-bottom: 2px;}
    .delivery-date{color: rgb(0, 176, 80);}
    .delivery-description{    font-size: 0.75rem;
    color: rgb(107, 101, 96);
    line-height: 1.5;}

 .tag_list li.tag_item {
    padding: 6px 12px;
    line-height: 1;
    border-radius: 9999px;
     font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pincode-wrapper h2{    margin: 6px 0 10px;
    color: #000;
    font-size: 15px;}
.pincode-wrapper button{    background: rgb(13, 13, 13);
    color: white;
    letter-spacing: 0.04em;  border: 1px solid;
    padding: 8px 20px;
    border-radius: 75px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;    cursor: pointer;}
.pincode-wrapper input{     outline: 0;   border: 1.5px solid var(--hoc-border);
    background: #fff;
    border-radius: 135px;
    padding: 5px 15px;}
.section-featured-left .subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: #9B9590;
    margin-bottom: 1rem;
}

.section-featured-left h2.title {
    padding: 0;
    margin: 20px 0;
    font-weight: 800;
    color: #0D0D0D;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.section-featured-left h2.title span {
    display: block;
    color: #C8A96E;
}
.section-featured-left .metafield-rich_text_field p {
    color: #6B6560;
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 420px;
}
#facet-inputs-filter-p-m-custom-type .checkbox__label-text:before {
    content: "";
    background: url(/cdn/shop/files/non-veg-i.svg?v=1787559856) no-repeat;
    position: absolute;
    right: -22px;
    top: 2px;
    width: 15px;
    height: 15px;
    background-size: contain;
}
#facet-inputs-filter-p-m-custom-type ul li:last-child .checkbox__label-text:before { background-image: url(/cdn/shop/files/veg-i.svg?v=1787559856);}
.product-card slideshow-arrows[position=center]{padding:0;}
.foodtype_tag{    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid rgb(0, 176, 80);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 6px; position: absolute;
    left:5px;
    bottom: 5px;}
    .foodtype_tag:before{content:"";    width: 10px;
    height: 11px;
    border-radius: 50%;
       background: rgb(0, 176, 80); }
.foodtype_tag.nonveg{    border: 2px solid rgb(232, 25, 44);}
 .foodtype_tag.nonveg:before{ background: rgb(232, 25, 44); }
.candy-product-iwrap{position:relative;}
 .box-selector__button{    position: sticky;
    transition: all .3s; 
    bottom: 0;
  }
    .candy-step .box-selector__button button{cursor:pointer;}
    .candy-step .box-selector__button button+button{ background: #EEEBE4 !important;  cursor: not-allowed !important;
    color: #9B9590 !important}
    .candy-step .box-selector__button.active button+button{    cursor: pointer !important;
    background: rgb(13, 13, 13) !important;
    color: #fff !important;}
.product-card .product-media:before{    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.08) 55%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;}
.product-card .foodtype_tag{    left: 10px;
    top: 10px;}
   .quick-add__button.add-to-cart-button{    height: auto;    opacity: 1;text-indent: 0;
    width: auto;
    font-size: 12px;
    letter-spacing: 0;
    padding: 6px 14px 5px 4px;}
    .product-card .card-gallery slideshow-arrows[position=center]{padding:0 10px;}
    .card-gallery slideshow-arrows .slideshow-control {
    padding-inline: var(--padding-xl);
    background: #ffffff14;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 0 !important;
    border-radius: 90px;
    color: #fff;
    column-gap: 0;
}
.quick-add-modal__content .product-information__media media-gallery{        border-radius: 0 !important;}
.quick-add-modal .product-details product-price.text-block{margin-top: 0;}
.quick-add-modal product-price .price{    font-weight: 600;
    font-size: 25px;
    line-height: 1.1;}
    .quick-add-modal.dialog-modal .close-button svg{    width: 25px;
    height: 25px;}
.free-sh-sec .image-block__image{max-width:35px;}
.header[data-scroll-direction="down"]{box-shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 4px 16px rgba(0, 0, 0, .06);}
.facets__filters-wrapper .facets__label{    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(13, 13, 13);}
.facets__filters-wrapper .checkbox__label{display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 5px 0;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 400;
    background: transparent;
    color: rgb(74, 69, 64);
    transition: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    cursor: pointer;}
.facets-remove.facets-remove--mobile-and-vertical {
    display: none;
}
.facets facets--horizontal .facets--filters-title{display:none;}
.slideshow-controls__thumbnails .slideshow-control{column-gap: 0;}

/* .page-content rte-formatter >  ul > li{font-size: 16px;
    background: #eeeeee;
    padding: 8px 15px;
    margin: 0 0 10px;}
.page-content rte-formatter > ul{margin-bottom:2rem;} */




















    @media (max-width:1024px){
search-button.search-action--bar button{    padding: 5px;
    width: 35px;border:0; background:transparent;
    height: 35px;    justify-content: center;}
    .search-placeholder{    display: none;}
.search-modal .dialog-modal[open].search-modal__content{       max-height: 80vh; max-width: 95%;
    margin: 102px auto 0;}



    .section-header .sec-head h2,
.slideshow-section slideshow-component .sec-head h2{          line-height: 1;  font-size: 64px;}
.slideshow-section slideshow-slides{ height: 100svh;}
.hero-btns .group-block-content{    align-items: flex-start;
    margin-top: 20px;}
      .sec-head h2{    font-size: 48px;}
.collection-card__content div.text-block p{    font-size: 24px;}
.resource-list__carousel[data-testid="collections-list-grid"] .resource-list__slide {
    width: 220px;}
    .resource-list slideshow-arrows{display:none;}
.resource-list__carousel .resource-list__item {
    padding: 15px 0;
    }
.collection-card:hover {
    transform: none;
}
.m-bottom-text .group-block-content{    align-items: flex-start;}
.section-text_one p{    text-align: left;}
.collection-card__content a.button-unstyled{ opacity: 1;}
.collection-card:hover:before{content:none;}
.email-signup__input.paragraph{padding: var(--padding-md) var(--padding-3xl);}
.rating-section-wrap > .group-block-content > .group-block > .group-block-content {
    padding: 10px;
}
.rating-section-wrap .group-block-content{height:auto;}
.sec-head-s h2{    font-size: 40px;}
.rating-section-wrap .text-block.custom p{    font-size: 16px;}
.rating-name .group-block__media-wrapper ~ .group-block-content{    flex-wrap: nowrap;}
.sweet-rating .group-block-content{    align-items: flex-end;    margin: 0;
    justify-content: flex-start;}
.sweet-rating .star-rating_wrap + .text-block{    max-width: max-content;}
.ui-test-product-list .resource-list__carousel .resource-list__slide{    width: 190px;}
.build-box-info .sec-head h2{font-size: 40px;}
.canday-dark-sec .sec-head h2 {
        font-size: 56px;
    }
    .gray-tabs-sec .group-block-content{  flex-wrap: wrap !important;}
.tabs-gray-t{    min-width: 130px;
    text-align: center;        max-width: max-content;}

  }

   @media (max-width:767px){
    .product-information.section {
    padding: 20px;
}
    .shopify-section-group-footer-group .footer-content{gap:0}
        .shopify-section-group-footer-group .menu--dividers .menu__details {
        border-block-end: var(--style-border-width) solid rgba(255, 255, 255, .1);
    }
      .shopify-section-group-footer-group .menu--accordion .details-content{    margin: 0 0 10px;}
    .footer-content .menu__heading{      text-transform: uppercase;
    padding: 20px 0; }
.section-wrapper .build-box-info.group-block {
    padding: 20px 15px 60px;
}
    .resource-list__carousel[data-testid="collections-list-grid"] .resource-list__slide {
        width: 220px;aspect-ratio: 3 / 4;
    }
    .favorites-sec .section-header .sec-head h2{        font-size: 48px;}
     
.everyone-sec-wrap{}
.give-something-sec .section-content-wrapper.section-content-wrapper{    flex-direction: column-reverse;}
.underline-link a{    padding-right: 0;    letter-spacing: 0;font-size: 11.48px;}
.collection-card__content {
    bottom: 10px;
}
.collection-card__content .text-block p{    line-height: 1;}
.collection-card__content a.button-unstyled{    transform: translateY(0px);}
.made-by-section .group-block-content .text-block{--max-width: max-content;
    text-align: left;}
.made-by-section .group-block-content .text-block p{text-align:left;        max-width: max-content;}
.made-by-section .group-block-content{    align-items: flex-start;}
.shopify-section slideshow-controls[controls-on-media][pagination-position=center]{position: static;}
.hero-btns .group-block-content{        margin-top: 10px;}
.rating-section-wrap.group-block {
    padding-bottom: 0;
}
.full-collection-sec .group-block-content .group-block .group-block-content{align-items: flex-start;    margin-bottom: 20px;}
.everyone-sec-wrap product-price.text-block{bottom: 20px;    left: 25px;}
.everyone-sec-wrap product-price.text-block > span{display:none;}
 .everyone-sec-wrap .p-sec1 .contents.user-select-text .paragraph.rte p {
    font-size: 18px;
}
.everyone-sec-wrap .p-sec1 .contents.user-select-text .paragraph.rte {
    bottom: 39px;
}
.b-text-head{padding-top:10px;}
.box-summary{    gap: 16px;}
.p-heading-text.text-block *{    font-size: 32px;}

.product-details product-price.text-block{margin-top: 1rem;}
.accelerated-checkout-block {    margin-top: 1rem;
}
.free-sh-sec .group-block-content{    gap: 5px;}
.product-mfem-main .title {
    font-size: 28px;}  
.product-mfem-items{padding-left: 1rem;
    padding-right: 0;    flex-wrap: nowrap;}

.product-mfem-main .header{    padding: 0 1rem;}
.product-mfem-item{    min-width: 320px;}
.product-mfem-item::last-child{    margin-right: 1rem;}
.recipe_items{    padding: 0 1rem 2rem;    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;}
.header-title-like h6 strong {
    font-size: 28px;}   
.header__columns .search-action{        padding: 0;}



  .collection_title h1{
      font-size: 48px !important;
      text-align: center;
  }
  .collection_description,.collection_title {padding: 0;}
  .collection_description div{
     text-align: center;
     
  }


  .footer_image-block .image-block{margin:auto;}
   }

   

@media(min-width:750px){
.section-featured-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}


}


.sold_out {
    width: 100%;
    padding: 9px 0px;
    border-radius: 8px;
    border-image: none;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    max-width: 130px;
    margin: 0 auto;
    display: block;
    transition: 0.25s;
    border: 1px solid;
}
@media(max-width:749px){
  .menu-drawer-container .header__icon--summary svg, .menu-drawer-container .header__icon--summary .svg-wrapper, search-button.search-action .svg-wrapper {
    height: 20px;
    width: 20px;
}
search-button.search-action .svg-wrapper, search-button.search-action .svg-wrapper svg {
    width: 23px;
    height: 23px;
}
shopify-account[menu="sg-new-menu"] svg, shopify-account[menu="sg-new-menu"] .svg-wrapper svg {
    height: 20px;
    width: 20px;
}

}