/** Shopify CDN: Minification failed

Line 5998:504 Unexpected ","
Line 8505:15 Expected identifier but found "!"
Line 8536:131 Unexpected "{"
Line 8900:71 Expected identifier but found whitespace
Line 9579:1 "border-righ" is not a known CSS property
Line 9730:73 Expected identifier but found whitespace
Line 9734:73 Expected identifier but found whitespace
Line 10096:22 Expected identifier but found "!"

**/
* {
  box-sizing: border-box;
}

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);
}

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

html[scroll-lock] {
  overflow: hidden;
}

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);
}

input:hover,
textarea:hover {
  background-color: var(--color-input-hover-background);
}

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

.collection-card,
.featured-blog-posts-card {
  width: 100%;
  position: relative;
  height: 100%;
}

/* Editorial layout */
.resource-list:not(.hidden--desktop) .collection-card--flexible-aspect-ratio,
.resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
  .collection-card__image,
  .featured-blog-posts-card__image,
  .blog-placeholder-svg {
    aspect-ratio: 99;
    height: 100%;
  }

  .collection-card__inner,
  .featured-blog-posts-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .collection-card__content,
  .featured-blog-posts-card__content {
    flex-shrink: 0;
  }

  &:not(.collection-card--image-bg) .collection-card__content,
  .featured-blog-posts-card__content {
    height: auto;
  }
}

.collection-card__inner,
.featured-blog-posts-card__inner {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: var(--layer-flat);
  pointer-events: none;
}

.collection-card__content,
.featured-blog-posts-card__content {
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
  gap: var(--gap);
}

.collection-card__link,
.featured-blog-posts-card__link {
  position: absolute;
  inset: 0;

  /* allows focus outline to have radius in supported browsers */
  border-radius: var(--border-radius);
}

.product-card,
.collection-card,
.resource-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;
}

.product-card__content slideshow-component {
  --cursor: pointer;
}

.predictive-search-results__card .product-card,
.predictive-search-results__card .collection-card,
.predictive-search-results__card .resource-card {
  transition: none;
  will-change: auto;
}

@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 .resource-card:hover,
  .card-hover-effect-lift .predictive-search-results__card:hover {
    transform: translateY(calc(-1 * var(--hover-lift-amount)));
  }

  .card-hover-effect-lift .header .product-card:hover,
  .card-hover-effect-lift .header .collection-card:hover,
  .card-hover-effect-lift .header .resource-card:hover,
  .card-hover-effect-lift .header-drawer .product-card:hover,
  .card-hover-effect-lift .header-drawer .collection-card:hover,
  .card-hover-effect-lift .header-drawer .resource-card:hover {
    transform: none;
  }

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

  .card-hover-effect-scale .header .product-card:hover,
  .card-hover-effect-scale .header .collection-card:hover,
  .card-hover-effect-scale .header .resource-card:hover,
  .card-hover-effect-scale .header-drawer .product-card:hover,
  .card-hover-effect-scale .header-drawer .collection-card:hover,
  .card-hover-effect-scale .header-drawer .resource-card:hover {
    transform: none;
  }

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

  .predictive-search-results__card .card-gallery,
  .predictive-search-results__card .collection-card__image,
  .predictive-search-results__card .product-card__image,
  .predictive-search-results__card .resource-card__image {
    transition: none;
  }

  .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 .resource-card:hover .resource-card__image,
  .card-hover-effect-subtle-zoom .predictive-search-results__card:hover {
    transform: scale(var(--hover-subtle-zoom-amount));
  }

  .card-hover-effect-subtle-zoom .header .product-card:hover .card-gallery,
  .card-hover-effect-subtle-zoom .header .collection-card:hover .collection-card__image,
  .card-hover-effect-subtle-zoom .header .product-card:hover .product-card__image,
  .card-hover-effect-subtle-zoom .header .resource-card:hover .resource-card__image,
  .card-hover-effect-subtle-zoom .header-drawer .product-card:hover .card-gallery,
  .card-hover-effect-subtle-zoom .header-drawer .collection-card:hover .collection-card__image,
  .card-hover-effect-subtle-zoom .header-drawer .product-card:hover .product-card__image,
  .card-hover-effect-subtle-zoom .header-drawer .resource-card:hover .resource-card__image {
    transform: none;
  }

  .predictive-search-results__card .product-card:hover,
  .predictive-search-results__card .collection-card:hover,
  .predictive-search-results__card .resource-card:hover,
  .header .product-card:hover,
  .header .collection-card:hover,
  .header .resource-card:hover,
  .header-drawer .product-card:hover,
  .header-drawer .collection-card:hover,
  .header-drawer .resource-card:hover {
    transform: none;
    box-shadow: none;
  }
}

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 */
@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }

  /* 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;
}

/* 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;
}

.shopify-section:not(.header-section) .section-background {
  content: '';
  position: absolute;
  inset: 0;
  z-index: var(--layer-section-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;
}

@media screen and (max-width: 749px) {
  .is-visually-hidden-mobile: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;
}

slideshow-component [data-placeholder='true'] * {
  cursor: grab;
}

/* 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, var(--font-h1-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, var(--font-h2-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, var(--font-h3-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, var(--font-h4-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, var(--font-h5-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, var(--font-h6-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 {
  --button-color: var(--color, var(--color-primary));

  color: var(--button-color);
  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 {
  --button-color: var(--color, var(--color-primary-hover));
}

/* 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: transparent;
    color: var(--color-primary-hover);
  }
}

.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-sticky);
}

/* 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-sticky) - 1);
}

/* Featured collection block */
.featured-collection-block {
  width: 100%;
}

/* Product grid */
.product-grid-container {
  display: block;
  width: 100%;
  padding-block: var(--padding-block-start) var(--padding-block-end);

  @media screen and (min-width: 750px) {
    display: grid;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--product-grid-gap);
  margin: auto;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 750px) {
  .product-grid {
    grid-template-columns: var(--product-grid-columns-desktop);
  }
}

.product-grid :is(h3, p) {
  margin: 0;
}

.product-grid__item {
  border: var(--product-card-border-width) solid rgb(var(--color-border-rgb) / var(--product-card-border-opacity));
}

.product-grid--organic[product-grid-view='default'] .product-grid__item {
  height: fit-content;
}

.product-grid__card.product-grid__card {
  display: flex;
  flex-flow: column nowrap;
  gap: var(--product-card-gap);
  align-items: var(--product-card-alignment);
  text-decoration: none;
  color: var(--color, var(--color-foreground));
  padding-block: var(--padding-block-start) var(--padding-block-end);
  padding-inline: var(--padding-inline-start) var(--padding-inline-end);
  overflow: hidden;
}

[product-grid-view='zoom-out'] .product-grid__card {
  row-gap: var(--padding-xs);
}

[product-grid-view='default'] {
  --product-grid-gap: 16px;
  --padding-block-start: 24px;
  --padding-block-end: 24px;
  --padding-inline-start: 0px;
  --padding-inline-end: 0px;
}

[product-grid-view='default'] .product-grid__item {
  padding-block: 0;
}

[product-grid-view='mobile-single'],
.product-grid-mobile--large {
  @media screen and (max-width: 749px) {
    grid-template-columns: 1fr;
  }
}

.product-grid__card .group-block > * {
  @media screen and (max-width: 749px) {
    flex-direction: column;
  }
}

ul[product-grid-view='zoom-out'] .product-grid__card > * {
  display: none;
}

ul[product-grid-view='zoom-out'] .product-grid__card .card-gallery {
  display: block;
}

[product-grid-view='zoom-out']
  .card-gallery
  > :is(quick-add-component, .product-badges, slideshow-component > slideshow-controls) {
  display: none;
}

ul[product-grid-view='zoom-out'] .card-gallery > img {
  display: block;
}

[product-grid-view='zoom-out'] {
  --product-grid-columns-desktop: repeat(
    10,
    minmax(clamp(50px, calc(100% - 9 * var(--product-grid-gap)) / 10, 80px), 1fr)
  );
}

.product-grid-view-zoom-out--details {
  display: none;
}

.product-grid-view-zoom-out--details .h4,
.product-grid-view-zoom-out--details span,
.product-grid-view-zoom-out--details s {
  font-size: var(--font-size--xs);
  font-family: var(--font-paragraph--family);
}

.product-grid-view-zoom-out--details span {
  font-weight: 500;
}

.product-grid-view-zoom-out--details .h4 {
  line-height: 1.3;
  font-weight: 400;
}

.product-grid-view-zoom-out--details > span.h6,
.product-grid-view-zoom-out--details > div.h6 > product-price {
  display: inline-block;
  line-height: 0;
  margin-top: var(--margin-2xs);
}

.product-grid-view-zoom-out--details > span.h6 > *,
.product-grid-view-zoom-out--details > div.h6 > * > * {
  line-height: 1.2;
}

@media (prefers-reduced-motion: no-preference) {
  :root:active-view-transition-type(product-grid) {
    details[open] floating-panel-component {
      view-transition-name: panel-content;

      .checkbox *,
      .facets__pill-label {
        transition: none;
      }

      .facets--vertical & {
        view-transition-name: none;
      }
    }

    .product-grid {
      view-transition-name: product-grid;
    }

    footer {
      view-transition-name: footer;
    }

    .product-grid__item,
    floating-panel-component {
      transition: none;
    }
  }
}

::view-transition-group(panel-content) {
  z-index: 1;
}

::view-transition-new(product-grid) {
  animation-delay: 150ms;
  animation-name: fadeInUp;
  animation-duration: var(--animation-speed);
  animation-timing-function: var(--animation-easing);
}

results-list[initialized] {
  .product-grid__item {
    transition: opacity var(--animation-speed) var(--animation-easing),
      transform var(--animation-speed) var(--animation-easing);

    @starting-style {
      opacity: 0;
      transform: translateY(10px);
    }
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Collection and product list cards have equal heights */
:is(.product-grid__item, .resource-list__item) .product-card {
  display: grid;
  height: 100%;
}

/* Video background */
.video-background,
.video-background * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background--cover * {
  object-fit: cover;
}

.video-background--contain * {
  object-fit: contain;
}

.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.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: var(--font-paragraph--weight);
  font-size: var(--font-paragraph--size);
  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);
}

.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-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: var(--color-input-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: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);
}

/* 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: inherit;
  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;
}

.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;
}

/* Show more */

.show-more__button {
  color: var(--color-primary);
  cursor: pointer;
}

.show-more__button:hover {
  @media screen and (min-width: 750px) {
    color: var(--color-primary-hover);
  }
}

.show-more__label {
  text-align: start;
  font-size: var(--font-size--body-md);
  font-family: var(--font-paragraph--family);
}

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

.show-more[data-expanded='true'] .show-more__label--more,
.show-more[data-expanded='false'] .show-more__label--less {
  display: none;
}

.link {
  display: inline-block;
  text-align: center;
}

shopify-accelerated-checkout,
shopify-accelerated-checkout-cart {
  --shopify-accelerated-checkout-button-border-radius: var(--style-border-radius-buttons-primary);
  --shopify-accelerated-checkout-button-block-size: var(--height-buy-buttons);
}

.product-form-buttons:has(.add-to-cart-button.button-secondary)
  :is(shopify-accelerated-checkout, shopify-accelerated-checkout-cart) {
  --shopify-accelerated-checkout-button-border-radius: var(--style-border-radius-buttons-secondary);
  --shopify-accelerated-checkout-button-block-size: var(--height-buy-buttons);
}

/* 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: var(--color-primary-hover);
}

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),
.show-more__button .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,
.details-open > summary .icon-plus .horizontal,
.show-more:where([data-expanded='true']) .show-more__button .icon-plus .horizontal {
  transform: rotate(90deg);
}

details[open] > summary .icon-plus .vertical,
.details-open > summary .icon-plus .vertical,
.show-more:where([data-expanded='true']) .show-more__button .icon-plus .vertical {
  transform: rotate(90deg);
  opacity: 0;
}

/* Product Media */
media-gallery {
  display: block;
  width: 100%;
}

:where(media-gallery, .product-grid__item) {
  .media-gallery__grid {
    grid-template-columns: 1fr;
    gap: var(--image-gap);
  }
}

.product-media-gallery__slideshow--single-media slideshow-container {
  @media screen and (max-width: 749px) {
    grid-area: unset;
  }
}

:not(.dialog-zoomed-gallery) > .product-media-container {
  --slide-width: 100%;

  display: flex;
  aspect-ratio: var(--gallery-aspect-ratio, var(--media-preview-ratio));
  max-height: var(--constrained-height);
  width: var(--slide-width, 100%);

  /* Relative position needed for video and 3d models */
  position: relative;
  overflow: hidden;

  &:where(.constrain-height) {
    /* arbitrary offset value based on average theme spacing and header height */
    --viewport-offset: 400px;
    --constrained-min-height: 300px;
    --constrained-height: max(var(--constrained-min-height), calc(100vh - var(--viewport-offset)));

    margin-right: auto;
    margin-left: auto;
  }

  @supports (--test: round(up, 100%, 1px)) {
    /* width and overflow forces children to shrink to parent width */
    --slide-width: round(up, 100%, 1px);
  }
}

media-gallery:where(.media-gallery--grid) .media-gallery__grid {
  display: none;
}

media-gallery.media-gallery--grid .media-gallery__grid .product-media-container {
  /* Needed for safari to stretch to full grid height */
  height: 100%;
}

.product-media :is(deferred-media, product-model) {
  position: absolute;
}

@media screen and (max-width: 749px) {
  .product-media-container.constrain-height {
    max-height: none;
  }
}

@media screen and (min-width: 750px) {
  .product-media-container.constrain-height {
    --viewport-offset: var(--header-height, 100px);
    --constrained-min-height: 500px;
  }

  body:has(header-component[transparent]) .product-media-container.constrain-height {
    --viewport-offset: 0px;
  }

  .media-gallery--two-column .media-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-gallery--large-first-image .product-media-container:first-child,
  .media-gallery--two-column .product-media-container:only-child {
    /* First child spans 2 columns */
    grid-column: span 2;
  }

  /* Display grid view as a carousel on mobile, grid on desktop */
  media-gallery:is(.media-gallery--grid) slideshow-component {
    display: none;
  }

  media-gallery:where(.media-gallery--grid) .media-gallery__grid {
    display: grid;
  }
}

.product-media-container--model {
  /* Usefull when view in your space is shown */
  flex-direction: column;
}

.shopify-model-viewer-ui__controls-area {
  bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
}

.product-media-container img {
  aspect-ratio: inherit;
  object-fit: contain;
}

.product-media-container.media-fit-contain img {
  object-position: center center;
}

.product-media-container.media-fit {
  --product-media-fit: cover;

  img {
    object-fit: var(--product-media-fit);
  }
}

/* Media gallery zoom dialog */
.product-media-container__zoom-button {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: var(--layer-flat);
  cursor: zoom-in;
  background-color: transparent;

  &:hover {
    background-color: transparent;
  }
}

zoom-dialog dialog {
  width: 100vw;
  height: 100vh;
  border: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
  max-height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity var(--animation-speed) var(--animation-easing);
  scrollbar-width: none;

  &[open] {
    opacity: 1;
  }

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

  &::backdrop {
    background: transparent;
  }
}

/* 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;
}

.dialog-thumbnails-list-container {
  position: fixed;
  width: 100%;
  bottom: 0;
  display: flex;
  z-index: var(--layer-raised);
}

.dialog-thumbnails-list {
  --active-thumbnail-border-color: rgb(var(--color-border-rgb) / var(--media-border-opacity));

  position: relative;
  display: inline-flex;
  flex-direction: row;
  gap: 8px;
  bottom: 0;
  overflow-x: auto;
  opacity: 0;
  padding: var(--padding-lg);
  margin-inline: auto;
  scrollbar-width: none;
  animation: thumbnailsSlideInBottom calc(var(--animation-speed) * 0.75) var(--animation-easing) forwards;
  animation-delay: calc(var(--animation-speed) * 1.5);
}

.dialog--closed .dialog-thumbnails-list {
  animation: thumbnailsSlideOutBottom var(--animation-speed) var(--animation-easing) forwards;
}

@media screen and (min-width: 750px) {
  .dialog-thumbnails-list {
    position: fixed;
    flex-direction: column;
    inset: 50% var(--margin-lg) auto auto;
    right: 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    animation: thumbnailsSlideInTop var(--spring-d220-b0-duration) var(--spring-d220-b0-easing) forwards;
    animation-delay: calc(var(--spring-d220-b0-duration) * 0.5);
  }

  .dialog--closed .dialog-thumbnails-list {
    animation: thumbnailsSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }
}

.dialog-thumbnails-list__thumbnail {
  width: var(--thumbnail-width);
  height: auto;
  transition: transform var(--animation-speed) var(--animation-easing);
  flex-shrink: 0;
  border-radius: var(--media-radius);

  img {
    height: 100%;
    object-fit: cover;
    border-radius: var(--media-radius);
    aspect-ratio: var(--aspect-ratio);
  }

  &:is([aria-selected='true']) {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: calc(var(--focus-outline-offset) / 2);
    border: var(--style-border-width) solid var(--active-thumbnail-border-color);
  }
}

@supports (anchor-name: --test) {
  .dialog-thumbnails-list:has(.dialog-thumbnails-list__thumbnail:is([aria-selected='true']))::after {
    --inset-offset: calc(var(--focus-outline-offset) / 2);

    content: '';
    position: absolute;
    inset: anchor(top) anchor(right) anchor(bottom) anchor(left);
    position-anchor: --selected-thumbnail;
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: calc(var(--focus-outline-offset) / 2);
    border: var(--style-border-width) solid var(--active-thumbnail-border-color);
    border-radius: var(--media-radius);
    z-index: var(--layer-raised);
  }

  @media (prefers-reduced-motion: no-preference) {
    .dialog-thumbnails-list:has(.dialog-thumbnails-list__thumbnail:is([aria-selected='true']))::after {
      transition-property: inset;
      transition-duration: var(--spring-d180-b0-duration);
      transition-timing-function: var(--spring-d180-b0-easing);
    }
  }

  .dialog-thumbnails-list__thumbnail:is([aria-selected='true']) {
    outline: none;
    border: none;
    anchor-name: --selected-thumbnail;
  }
}

.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;
}

/* If the product media is already providing an image cover, hide images provided by sibling deferred-media */
.product-media__image ~ * .deferred-media__poster-image {
  display: none;
}

/* If the product media is playing, hide the preview image */
.product-media-container:has(.deferred-media__playing) .product-media__image {
  opacity: 0;
  transition: opacity var(--animation-speed) var(--animation-easing);
}

/* Deferred media & Product model  */
:is(product-model, deferred-media) {
  /* Height needed to make sure when it's set to be stretched, it takes the full height */
  height: 100%;
  width: 100%;
  position: relative;
}

product-model model-viewer,
/* Media that have a poster button sibling providing the size should be absolute-positioned.
Otherwise, it should be a block to rely on its own size */
:is(deferred-media, product-model) > .deferred-media__poster-button ~ *:not(template) {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  /* Required to make sure the absolute position respects the padding of the wrapper: */
  padding: inherit;
}

slideshow-slide .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
  bottom: var(--padding-sm);
  right: var(--padding-sm);
}

.dialog-zoomed-gallery .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
  /* Move the controls above the thumbnails. Need to calculate the height of the thumbnails list */
  bottom: calc(var(--thumbnail-width) / var(--media-preview-ratio) + var(--padding-lg) * 2);
  right: var(--padding-lg);
}

@media screen and (max-width: 749px) {
  slideshow-component:has(:not(.mobile\:hidden) :is(.slideshow-controls__dots, .slideshow-controls__counter))
    .shopify-model-viewer-ui__controls-area {
    /* Position the controls just above the counter */
    bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
  }
}

@media screen and (min-width: 750px) {
  slideshow-component:has(:not(.desktop\:hidden) :is(.slideshow-controls__dots, .slideshow-controls__counter))
    .shopify-model-viewer-ui__controls-area {
    /* Position the controls just above the counter */
    bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
  }

  .dialog-zoomed-gallery .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
    /* Move the controls up to match the padding on the thumbnails */
    bottom: var(--padding-lg);

    /* Move the controls to the left of the thumbnails list on the right */
    right: calc(var(--thumbnail-width) + var(--padding-lg) * 2);
  }
}

:is(deferred-media, .video-placeholder-wrapper).border-style {
  /* Apply the border radius to the video */
  overflow: hidden;
}

deferred-media {
  /* The overflow hidden in the deferred-media won't let the button show the focus ring */
  &:has(:focus-visible) {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

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

.deferred-media__poster-button {
  width: 100%;
  height: 100%;
  aspect-ratio: var(--video-aspect-ratio, auto);
}

.deferred-media__poster-button.deferred-media__playing {
  opacity: 0;
  transition: opacity 0.3s ease;
}

deferred-media img {
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

deferred-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  aspect-ratio: var(--size-style-aspect-ratio, auto);
}

deferred-media[data-media-loaded] img {
  opacity: 0;
}

.deferred-media__poster-icon,
.video-placeholder-wrapper__poster-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deferred-media__poster-icon svg,
.video-placeholder-wrapper__poster-icon svg {
  width: var(--button-size);
  height: var(--button-size);
  color: var(--color-white);
  filter: drop-shadow(var(--shadow-button));

  &:hover {
    color: rgb(var(--color-white-rgb) / var(--opacity-80));
  }

  @media screen and (min-width: 750px) {
    width: 4rem;
    height: 4rem;
  }
}

deferred-media[class] :is(.deferred-media__poster-button img, .deferred-media__poster-button ~ video) {
  /* only apply this on the video block not product media */
  object-fit: cover;
  height: 100%;
  aspect-ratio: var(--size-style-aspect-ratio, auto);
}

.button-shopify-xr {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--padding-md);
}

.button-shopify-xr > svg {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  margin-inline-end: var(--margin-md);
}

.button-shopify-xr[data-shopify-xr-hidden] {
  display: none;
}

/* Swatches */
.swatch {
  --color-border: rgb(var(--color-foreground-rgb) / var(--style-border-swatch-opacity));
  --min-width-unitless: 15.9999; /* want to avoid division by 0 */
  --min-height-unitless: 15.9999; /* want to avoid division by 0 */
  --min-height: 16px;
  --min-width: 16px;

  /* mobile values */
  --scaling-factor: 0.5;
  --max-swatch-size: 28px;
  --max-pill-size: 20px;
  --max-filter-size: 32px;

  /* From the settings */
  --offset-swatch-width: calc(var(--variant-picker-swatch-width-unitless) - var(--min-width-unitless));
  --offset-swatch-height: calc(var(--variant-picker-swatch-height-unitless) - var(--min-height-unitless));

  /**
    Offset values are obtained from the following formulas:
      offset-width = width - min-width
      offset-height = height - min-height

    The offset-scaled-width and heigth are obtained by extending the line from
    [min,min] to [W,H] and taking the intersection with a square that starts at
    [min,min] and ends at [max,max].

    The extending line forms right angle triangles with the [min,min]->[max,max]
    box that enable us to derive the following formulas

    We also want the result to always be smaller than the input (pdp > everywhere else)
    by some scaling factor.
  */
  --offset-scaled-width: calc(
    var(--scaling-factor) * var(--offset-swatch-width) / var(--offset-swatch-height) * var(--offset-max-swatch-size)
  );
  --offset-scaled-height: calc(
    var(--scaling-factor) * var(--offset-swatch-height) / var(--offset-swatch-width) * var(--offset-max-swatch-size)
  );
  --offset-max-swatch-size: calc(var(--max-swatch-size) - var(--min-width));

  /* width = min(m + sU, (m + s * W'/H' * M'), M) */
  --swatch-width: min(
    calc(var(--min-width) + var(--scaling-factor) * var(--offset-swatch-width) * 1px),
    calc(var(--min-width) + var(--offset-scaled-width)),
    var(--max-swatch-size)
  );

  /* height = min(m + sV, (m + s * H'/W' * M'), M) */
  --swatch-height: min(
    calc(var(--min-height) + var(--scaling-factor) * var(--offset-swatch-height) * 1px),
    calc(var(--min-height) + var(--offset-scaled-height)),
    var(--max-swatch-size)
  );

  display: block;
  background: var(--swatch-background);
  background-position: var(--swatch-focal-point, center);
  border-radius: var(--variant-picker-swatch-radius);
  border: var(--style-border-swatch-width) var(--style-border-swatch-style) var(--color-border);
  width: var(--swatch-width);
  height: var(--swatch-height);

  /* This is different than `background-size: cover` because we use `box-sizing: border-box`,
   * doing it like makes the background clip under the border without repeating.
   */
  background-size: var(--swatch-width) var(--swatch-height);

  &.swatch--unavailable {
    border-style: dashed;
  }

  &.swatch--unscaled {
    /* for when you want fixed sizing (e.g. pdp) */
    --swatch-width: var(--variant-picker-swatch-width);
    --swatch-height: var(--variant-picker-swatch-height);
  }

  &.swatch--filter {
    --swatch-width: var(--max-filter-size);
    --swatch-height: var(--max-filter-size);

    border-radius: var(--variant-picker-swatch-radius);
  }

  &.swatch--pill {
    --swatch-width: var(--max-pill-size);
    --swatch-height: var(--max-pill-size);

    border-radius: var(--variant-picker-swatch-radius);
  }

  /* swatches in filters and pills always have a border  */
  &.swatch--filter,
  &.swatch--pill {
    --style-border-swatch-width: var(--variant-picker-border-width);
    --style-border-swatch-style: var(--variant-picker-border-style);
    --color-border: rgb(var(--color-foreground-rgb) / var(--variant-picker-border-opacity));
  }

  &.swatch--variant-image {
    background-size: cover;
  }

  @media screen and (min-width: 750px) {
    /* desktop values */
    --max-swatch-size: 32px;
    --max-pill-size: 16px;
    --max-filter-size: 28px;
    --scaling-factor: 0.65;
  }
}

.variant-picker .variant-option--buttons label:has(.swatch) {
  border-radius: var(--variant-picker-swatch-radius);
}

/* Variant option component */
.variant-option {
  --options-border-radius: var(--variant-picker-button-radius);
  --options-border-width: var(--variant-picker-button-border-width);
  --variant-option-padding-inline: var(--padding-md);
}

.variant-option + .variant-option {
  margin-top: var(--padding-lg);
}

.variant-option--swatches {
  --options-border-radius: var(--variant-picker-swatch-radius);

  width: 100%;

  overflow-list::part(list) {
    padding-block: var(--overflow-list-padding-block, 0);
    padding-inline: var(--overflow-list-padding-inline, 0);
  }
}

.variant-option--swatches > overflow-list {
  justify-content: var(--product-swatches-alignment);

  @media screen and (max-width: 749px) {
    justify-content: var(--product-swatches-alignment-mobile);
  }
}

.variant-option--buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  margin: 0;
  padding: 0;
  border: none;
}

.variant-option--buttons legend {
  padding: 0;
  margin-block-end: var(--margin-xs);
}

.variant-option__swatch-value {
  padding-inline-start: var(--padding-xs);
  color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
}

@media (prefers-reduced-motion: no-preference) {
  .variant-option__button-label,
  .variant-option__select-wrapper,
  .variant-option__button-label::before,
  .variant-option__button-label::after,
  .variant-option__button-label:has([data-previous-checked='true'], [data-current-checked='true'])
    .variant-option__button-label__pill,
  .variant-option__button-label:not(.variant-option__button-label--has-swatch) svg line:last-of-type {
    transition-duration: var(--animation-speed);
    transition-timing-function: var(--animation-easing);
  }

  .variant-option__button-label__pill {
    transition-property: transform;
  }

  .variant-option__button-label:not(.variant-option__button-label--has-swatch) svg line:last-of-type {
    transition-property: clip-path;
  }

  .variant-option__button-label:has([data-previous-checked='true'], [data-current-checked='true'])
    .variant-option__button-label__pill {
    transition-property: transform;
  }

  .variant-option__button-label::after {
    transition-property: clip-path;
  }

  .variant-option__button-label::before {
    transition-property: border-color;
  }

  .variant-option__select-wrapper,
  .variant-option__button-label {
    transition-property: background-color, border-color, color;
  }
}

.variant-option__button-label {
  --variant-picker-stroke-color: var(--color-variant-border);

  cursor: pointer;
  display: flex;
  flex: 0 0 3.25em;
  align-items: center;
  position: relative;
  padding-block: var(--padding-sm);
  padding-inline: var(--padding-lg);
  border: var(--options-border-width) solid var(--color-variant-border);
  border-radius: var(--options-border-radius);
  overflow: clip;
  justify-content: center;
  min-height: 3.25em;
  min-width: fit-content;
  white-space: nowrap;
  background-color: var(--color-variant-background);
  color: var(--color-variant-text);
  gap: 0;

  &:hover,
  &:hover:has([aria-disabled='true']):has([data-option-available='false']) {
    background-color: var(--color-variant-hover-background);
    border-color: var(--color-variant-hover-border);
    color: var(--color-variant-hover-text);
  }

  /* we need something like overflow-clip-margin to use the pseudoelement but it doesn't work in Safari */

  /* so instead use the layered background image trick */
  &:not(.variant-option__button-label--has-swatch):has([data-option-available='false']) {
    border-width: 0;
  }

  /* ::after/::before act as a fake border for the button style variant */

  /* ::after is the unavailable variant border that clips in */
  &:not(.variant-option__button-label--has-swatch)::before,
  &:has([data-option-available='false']):not(.variant-option__button-label--has-swatch)::after {
    content: '';
    position: absolute;
    inset: 0;
    border: var(--options-border-width) solid var(--color-selected-variant-border);
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(var(--clip, 0 0 0 0));
  }

  &:has([data-option-available='false']):not(.variant-option__button-label--has-swatch)::before {
    inset: 0;
  }

  &:not(.variant-option__button-label--has-swatch)::before {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 0 0 0);
    border-color: var(--color-variant-border);
    inset: calc(var(--options-border-width) * -1);
  }

  &:has(:checked):not(.variant-option__button-label--has-swatch, :has([data-option-available='false']))::before {
    border-color: var(--color-selected-variant-border);
  }

  /* setting left/right accounts for variant buttons of different widths */
  &:not(:has(:checked)):has(~ label > :checked),
  &:has(:checked):has(~ label > [data-previous-checked='true']) {
    .variant-option__button-label__pill {
      right: 0;
      left: unset;
    }
  }

  &:has([data-previous-checked='true']) ~ label:has([data-current-checked='true']),
  &:has(:checked) ~ label {
    .variant-option__button-label__pill {
      left: 0;
      right: unset;
    }
  }

  &:not(:has(:checked)):has(~ label > :checked) {
    --pill-offset: calc(100% + 1px);
  }

  &:has(:checked) ~ label {
    --pill-offset: calc(-100% - 1px);
  }

  &:has([data-current-checked='true']):first-of-type
    ~ label:last-of-type:not(.variant-option__button-label--has-swatch),
  &:not(:has(:checked)):has(~ label > :checked):not(.variant-option__button-label--has-swatch) {
    --clip: 0 0 0 100%;
  }

  &:not(:has([data-current-checked='true'])):first-of-type:has(~ label:last-of-type > :checked):not(
      .variant-option__button-label--has-swatch
    ),
  &:has(:checked) ~ label:not(.variant-option__button-label--has-swatch) {
    --clip: 0 100% 0 0;
  }

  &:has([data-previous-checked='true'], [data-current-checked='true']) .variant-option__button-label__pill {
    width: max(var(--pill-width-current, 100%), var(--pill-width-previous, 100%));
  }

  @media screen and (min-width: 750px) {
    padding: var(--padding-xs) var(--variant-option-padding-inline);
  }
}

/* wrap around only for 3 or more variants in a row */

/* the more complex selector rules here produce the wrap around effect for first/last variants */
.variant-option--buttons:has(:nth-of-type(3)) {
  .variant-option__button-label:has([data-current-checked='true']):first-of-type ~ label:last-of-type {
    --pill-offset: calc(100% + 1px);
  }

  .variant-option__button-label:not(:has([data-current-checked='true'])):first-of-type:has(
      ~ label:last-of-type > :checked
    ) {
    --pill-offset: calc(-100% - 1px);
  }
}

.variant-option__button-label__pill {
  background: var(--color-selected-variant-background);
  position: absolute;
  top: calc(var(--options-border-width) * -1);
  bottom: calc(var(--options-border-width) * -1);
  border-radius: inherit;
  pointer-events: none;
  width: 100%;
  transform: translateX(var(--pill-offset, 0));
}

.variant-option__button-label__text {
  pointer-events: none;
  text-align: start;
  text-wrap: auto;
  z-index: 2;
}

.variant-option--equal-width-buttons {
  --variant-min-width: clamp(44px, calc(var(--variant-option-padding-inline) * 2 + var(--variant-ch)), 100%);

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--variant-min-width), 1fr));

  .variant-option__button-label {
    min-width: var(--variant-min-width);
  }

  .variant-option__button-label__text {
    text-align: center;
    text-wrap: balance;
  }
}

.variant-option__button-label:has(:focus-visible) {
  --variant-picker-stroke-color: var(--color-foreground);

  border-color: var(--color-foreground);
  outline: var(--focus-outline-width) solid var(--color-foreground);
  outline-offset: var(--focus-outline-offset);
}

.variant-option__button-label--has-swatch {
  --focus-outline-radius: var(--variant-picker-swatch-radius);

  padding: 0;
  border: none;
  flex-basis: auto;
  min-height: auto;
}

/* Override global label:has(input) display rule with higher specificity */
.variant-option__button-label--has-swatch:has(input) {
  display: block;
}

.variant-option__button-label:has(:checked) {
  color: var(--color-selected-variant-text);
  border-color: var(--color-selected-variant-border);
}

.variant-option__button-label:has(:checked):hover {
  border-color: var(--color-selected-variant-hover-border);
  color: var(--color-selected-variant-hover-text);

  .variant-option__button-label__pill {
    background-color: var(--color-selected-variant-hover-background);
  }
}

.variant-option__button-label:has([data-option-available='false']) {
  color: rgb(var(--color-variant-text-rgb) / var(--opacity-60));
}

.variant-option__button-label--has-swatch:hover {
  outline: var(--focus-outline-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-35-55));
  outline-offset: var(--focus-outline-offset);
}

.variant-option__button-label--has-swatch:has(:checked) {
  --focus-outline: var(--focus-outline-width) solid var(--color-foreground);

  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

/* 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. **/
  .variant-option__button-label--has-swatch:has(:checked),
  .variant-option__button-label:has(:focus-visible) .swatch {
    outline: none;
    position: relative;
    overflow: visible;
  }

  .variant-option__button-label--has-swatch:has(:checked)::after,
  .variant-option__button-label:has(:focus-visible) .swatch::after {
    content: '';
    position: absolute;
    inset: calc(-1 * var(--focus-outline-offset));
    border: var(--focus-outline);
    border-radius: var(--focus-outline-radius, 50%);
    background-color: transparent;
    display: inherit;
  }
}

.variant-option__button-label:has([data-option-available='false']):has(:checked) {
  background-color: inherit;
  color: rgb(var(--color-variant-text-rgb) / var(--opacity-60));
}

.variant-option__button-label input {
  /* remove the checkbox from the page flow */
  position: absolute;

  /* set the dimensions to match those of the label */
  inset: 0;

  /* hide it */
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border: none;
  border-radius: 0;
  background: transparent;
  appearance: auto;
  display: block;
  cursor: pointer;
}

.variant-option__button-label svg {
  position: absolute;
  left: var(--options-border-width);
  top: var(--options-border-width);
  height: calc(100% - (var(--options-border-width) * 2));
  width: calc(100% - (var(--options-border-width) * 2));
  cursor: pointer;
  pointer-events: none;
  stroke-width: var(--style-border-width);
  stroke: var(--variant-picker-stroke-color);
}

.variant-option__button-label:not(.variant-option__button-label--has-swatch) svg {
  stroke: var(--color-variant-border);

  line {
    stroke-width: var(--options-border-width);
  }

  line:last-of-type {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(var(--clip, 0 0 0 0));
    stroke: rgb(var(--color-variant-text-rgb) / 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 {
  white-space: nowrap;
}

.unit-price {
  display: block;
  font-size: min(0.85em, var(--font-paragraph--size));
  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-foreground-rgb) / var(--opacity-subdued-text));
}

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

.compare-at-price {
  opacity: 0.4;
  text-decoration-line: line-through;
  text-decoration-thickness: 1.5px;
}

.card-gallery {
  position: relative;
}

@container (max-width: 70px) {
  .card-gallery:hover .quick-add__button {
    display: none;
  }
}

/* Hide "Add" button when "Choose" button is shown */
[data-quick-add-button='choose'] add-to-cart-component {
  display: none;
}

/* Hide "Choose" button when "Add" button is shown */
[data-quick-add-button='add'] .quick-add__button--choose {
  display: none;
}

/* Drawer */
.drawer {
  background-color: var(--color-background);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  z-index: var(--layer-raised);
  transform: translateX(-120%);
  transition: transform var(--animation-speed) var(--animation-easing);
}

.drawer[data-open='true'] {
  transform: translateX(0);
}

.drawer-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--drawer-header-block-padding) var(--drawer-inline-padding);
}

.drawer__title {
  font-size: var(--font-h2--size);
  margin: 0;
}

.drawer__close {
  width: var(--minimum-touch-target);
  height: var(--minimum-touch-target);
}

.drawer__content {
  display: block;
  padding: var(--drawer-content-block-padding) var(--drawer-inline-padding);
  width: 100%;
}

/* Background overlay */
.background-overlay {
  position: relative;

  &::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-overlay-color, rgb(0 0 0 / 15%));
  }
}

/* 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%;
}

.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);

    > .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;
    }
  }
}

@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:is(:focus, :hover) {
  box-shadow: var(--input-box-shadow-focus);
  background-color: var(--color-input-hover-background);
}

.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);
}

.checkbox {
  --checkbox-top: 50%;
  --checkbox-left: 1.5px;
  --checkbox-offset: 3px;
  --checkbox-path-opacity: 0;
  --checkbox-cursor: pointer;

  position: relative;
  display: flex;
  align-items: center;

  &:has(.checkbox__input:checked) {
    --checkbox-path-opacity: 1;
  }

  &.checkbox--disabled {
    --checkbox-cursor: not-allowed;
  }
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  aspect-ratio: unset;
  border: none;
  border-radius: 0;
  background: transparent;
  appearance: auto;
  display: block;
  cursor: pointer;

  /* Outline is on the SVG instead, to allow it to have border-radius */
  &:focus-visible {
    outline: none;
  }

  &:focus-visible + .checkbox__label .icon-checkmark {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  &:checked + .checkbox__label .icon-checkmark {
    background-color: var(--color-foreground);
    border-color: var(--color-foreground);
  }

  &:disabled + .checkbox__label .icon-checkmark {
    background-color: var(--input-disabled-background-color);
    border-color: var(--input-disabled-border-color);
  }
}

.checkbox__label {
  position: relative;
  display: inline-flex;
  cursor: var(--checkbox-cursor);
  line-height: var(--checkbox-size);
  min-width: var(--minimum-touch-target);
}

.checkbox .icon-checkmark {
  height: var(--checkbox-size);
  width: var(--checkbox-size);
  flex-shrink: 0;
  border: var(--checkbox-border);
  border-radius: var(--checkbox-border-radius);
  background-color: var(--color-background);
}

.checkbox__label-text {
  padding-inline-start: var(--checkbox-label-padding);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkbox .icon-checkmark path {
  stroke: var(--color-background);
  opacity: var(--checkbox-path-opacity);
  transition: opacity var(--animation-speed) var(--animation-easing);
}

.checkbox__input:disabled + .checkbox__label {
  color: var(--input-disabled-text-color);
}

/* 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;
}

/* Override for swatch labels to maintain block display */
.variant-option__button-label--has-swatch:has(input[type='radio']) {
  display: block;
}

/* Add to cart button */
.button[id^='BuyButtons-ProductSubmitButton-'] {
  position: relative;
  overflow: hidden;
}

/* Cart items component */
.cart-items-component {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Cart bubble */
.cart-bubble {
  --cart-padding: 0.2em;

  position: relative;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border-width: 0;
  display: flex;
  line-height: normal;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-button-text);
  padding-inline: var(--cart-padding);
}

.cart-bubble[data-maintain-ratio] {
  aspect-ratio: 1;
}

.cart-bubble[data-maintain-ratio] .cart-bubble__background {
  border-radius: var(--style-border-radius-50);
}

.cart-bubble__background {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary-button-background);
  border-radius: var(--style-border-radius-lg);
}

.cart-bubble__text {
  font-size: var(--font-size--3xs);
  z-index: var(--layer-flat);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart typography */
.cart-primary-typography {
  font-family: var(--cart-primary-font-family);
  font-style: var(--cart-primary-font-style);
  font-weight: var(--cart-primary-font-weight);
}

.cart-secondary-typography {
  font-family: var(--cart-secondary-font-family);
  font-style: var(--cart-secondary-font-style);
  font-weight: var(--cart-secondary-font-weight);
}

/* Quantity selector */
.quantity-selector {
  --quantity-selector-width: 124px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-input-text);
  background-color: var(--color-input-background);
  border: var(--style-border-width-inputs) solid var(--color-input-border);
  border-radius: var(--style-border-radius-inputs);
  flex: 1 1 var(--quantity-selector-width);
  align-self: stretch;
  transition: background-color var(--animation-speed) var(--animation-easing);

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

.product-form-buttons:has(.add-to-cart-button.button-secondary) .quantity-selector {
  border-radius: var(--style-border-radius-buttons-secondary);
}

.quantity-selector :is(.quantity-minus, .quantity-plus) {
  /* Unset button styles */
  padding: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: var(--minimum-touch-target);
  height: var(--minimum-touch-target);
  flex-shrink: 0;
  color: var(--color-input-text);
}

.quantity-selector .quantity-minus {
  border-start-start-radius: var(--style-border-radius-inputs);
  border-end-start-radius: var(--style-border-radius-inputs);
}

.quantity-selector .quantity-plus {
  border-start-end-radius: var(--style-border-radius-inputs);
  border-end-end-radius: var(--style-border-radius-inputs);
}

.product-details .quantity-selector,
.quick-add-modal .quantity-selector {
  border-radius: var(--style-border-radius-buttons-primary);
}

.product-details .quantity-selector .quantity-minus,
.quick-add-modal .quantity-selector .quantity-minus {
  border-start-start-radius: var(--style-border-radius-buttons-primary);
  border-end-start-radius: var(--style-border-radius-buttons-primary);
}

.product-details .quantity-selector .quantity-plus,
.quick-add-modal .quantity-selector .quantity-plus {
  border-start-end-radius: var(--style-border-radius-buttons-primary);
  border-end-end-radius: var(--style-border-radius-buttons-primary);
}

.quantity-selector .svg-wrapper {
  transition: transform var(--animation-speed) var(--animation-easing);
}

.quantity-selector svg {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

:is(.quantity-minus, .quantity-plus):active .svg-wrapper {
  transform: scale(0.9);
}

.quantity-selector input[type='number'] {
  margin: 0;
  text-align: center;
  border: none;
  appearance: none;
  max-width: calc(var(--quantity-selector-width) - var(--minimum-touch-target) * 2);
  border-radius: var(--style-border-radius-buttons);
  color: var(--color-input-text);
  background-color: transparent;
}

/* Chrome, Safari, Edge, Opera */
.quantity-selector input[type='number']::-webkit-inner-spin-button,
.quantity-selector input[type='number']::-webkit-outer-spin-button {
  appearance: none;
}

/* Firefox */
.quantity-selector input[type='number'] {
  appearance: textfield;
}

/* Pills (used in facets and predictive search) */

.pills__pill {
  --pills-pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5-15));

  color: var(--color-foreground);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-sm);
  min-width: 48px;
  padding: 6px 12px;
  border-radius: var(--style-border-radius-pills);
  cursor: pointer;
  background-color: var(--pills-pill-background-color);
  transition: background-color var(--animation-speed) var(--animation-easing);

  &:hover {
    --pills-pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  @media screen and (max-width: 749px) {
    padding: var(--padding-xs) var(--padding-md);
  }
}

.pills__pill > .svg-wrapper {
  --close-icon-opacity: 1;
  /* --close-icon-opacity: 0.4; */
  --icon-stroke-width: 1px;

  color: #000;
}
.pills__pill{
  background-color: rgb(242, 237, 229);
}
.pills__pill {
  &:hover{
background-color: #00352F;
  }
}
.pills__pill {
  &:hover > .svg-wrapper{
    color: #f2ede5 !important;
  }
}
.pills__pill--swatch {
  @media screen and (max-width: 749px) {
    padding-inline-start: var(--padding-sm);
  }
}

.pills__pill--swatch .swatch {
  margin-right: -4px;
}

.pills__pill--desktop-small {
  @media screen and (min-width: 750px) {
    font-size: var(--font-size--xs);
  }
}

/* Fly to cart animation */
fly-to-cart {
  --offset-y: 10px;

  position: fixed;
  width: var(--width, 40px);
  height: var(--height, 40px);
  left: 0;
  top: 0;
  z-index: calc(infinity);
  pointer-events: none;
  border-radius: var(--style-border-radius-buttons-primary);
  overflow: hidden;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  opacity: 0;
  background-color: var(--color-foreground);
  translate: var(--start-x, 0) var(--start-y, 0);
  transform: translate(-50%, -50%);
  animation-name: travel-x, travel-y, travel-scale;
  animation-timing-function: var(--x-timing), var(--y-timing), var(--scale-timing);
  animation-duration: 0.6s;
  animation-composition: accumulate;
  animation-fill-mode: both;
}

fly-to-cart.fly-to-cart--main {
  --x-timing: cubic-bezier(0.7, -5, 0.98, 0.5);
  --y-timing: cubic-bezier(0.15, 0.57, 0.9, 1.05);
  --scale-timing: cubic-bezier(0.85, 0.05, 0.96, 1);
}

fly-to-cart.fly-to-cart--quick {
  --x-timing: cubic-bezier(0, -0.1, 1, 0.32);
  --y-timing: cubic-bezier(0, 0.92, 0.92, 1.04);
  --scale-timing: cubic-bezier(0.86, 0.08, 0.98, 0.98);

  animation-duration: 0.6s;
}

fly-to-cart.fly-to-cart--sticky {
  --x-timing: cubic-bezier(0.98, -0.8, 0.92, 0.5);
  --y-timing: cubic-bezier(0.14, 0.56, 0.92, 1.04);
  --scale-timing: cubic-bezier(0.86, 0.08, 0.98, 0.98);
  --radius: var(--style-border-radius-buttons-primary);

  @media screen and (max-width: 749px) {
    --x-timing: cubic-bezier(0.98, -0.1, 0.92, 0.5);
  }

  animation-duration: 0.8s;
}

@keyframes travel-scale {
  0% {
    opacity: var(--start-opacity, 1);
  }

  5% {
    opacity: 1;
  }

  100% {
    border-radius: 50%;
    opacity: 1;
    transform: translate(-50%, calc(-50% + var(--offset-y))) scale(0.25);
  }
}

@keyframes travel-x {
  to {
    translate: var(--travel-x, 0) 0;
  }
}

@keyframes travel-y {
  to {
    translate: 0 var(--travel-y, 0);
  }
}

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

/* Collection Wrapper - Shared layout CSS for collection and search pages */

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

.collection-wrapper {
  @media screen and (min-width: 750px) {
    --facets-vertical-col-width: 6;

    grid-template-columns:
      1fr repeat(
        var(--centered-column-number),
        minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
      )
      1fr;
  }

  @media screen and (min-width: 990px) {
    --facets-vertical-col-width: 5;
  }
}

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

.collection-wrapper:has(.facets--vertical) .facets-block-wrapper--vertical:not(.hidden) ~ .main-collection-grid {
  @media screen and (min-width: 750px) {
    grid-column: var(--facets-vertical-col-width) / var(--full-width-column-number);
  }
}

.collection-wrapper:has(.facets-block-wrapper--vertical:not(#filters-drawer)):has(.collection-wrapper--full-width) {
  @media screen and (min-width: 750px) {
    grid-column: 1 / -1;
    grid-template-columns: 0fr repeat(var(--centered-column-number), minmax(0, 1fr)) 0fr;
  }
}

:is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
  [product-grid-view='default']
  .product-grid__card {
  @media screen and (max-width: 749px) {
    padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
    padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
  }
}

:is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
  [product-grid-view='mobile-single']
  .product-grid__card {
  @media screen and (max-width: 749px) {
    padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
    padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
  }
}

/* Make product media go edge-to-edge by using negative margins */
:is(.collection-wrapper--full-width) .card-gallery,
:is(.collection-wrapper--full-width-on-mobile) .card-gallery {
  @media screen and (max-width: 749px) {
    margin-inline-start: calc(-1 * max(var(--padding-xs), var(--padding-inline-start)));
    margin-inline-end: calc(-1 * max(var(--padding-xs), var(--padding-inline-end)));
  }
}

.collection-wrapper--full-width .main-collection-grid__title {
  margin-left: var(--page-margin);
}

.collection-wrapper--full-width-on-mobile .main-collection-grid__title {
  @media screen and (max-width: 749px) {
    margin-left: var(--page-margin);
  }
}

.collection-wrapper--grid-full-width .facets--vertical:not(.facets--drawer) {
  @media screen and (min-width: 750px) {
    padding-inline-start: max(var(--padding-sm), var(--padding-inline-start));
  }
}

.collection-wrapper:has(.product-grid-mobile--large) .facets-mobile-wrapper.facets-controls-wrapper {
  @media screen and (max-width: 749px) {
    display: none;
  }
}

.collection-wrapper:has(> .facets--horizontal) .facets__panel[open] {
  @media screen and (min-width: 750px) {
    z-index: var(--facets-open-z-index);
  }
}

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

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

/* 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;
  }
}

.bubble {
  display: inline-flex;
  height: calc(var(--variant-picker-swatch-height) / 1.5);
  font-size: var(--font-size--xs);
  border-radius: 20px;
  min-width: 20px;
  padding: 0 6px;
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  color: var(--color-foreground);
  align-items: center;
  justify-content: center;
}

.bubble svg {
  width: 12px;
  height: 12px;
}

.top-shadow::before {
  content: '';
  box-shadow: 0 0 10px var(--color-shadow);
  position: absolute;
  z-index: var(--layer-lowest);
  inset: 0;
  clip-path: inset(-50px 0 0 0); /* stylelint-disable-line */
}

@media screen and (min-width: 750px) {
  .top-shadow--mobile::before {
    display: none;
  }
}

.bottom-shadow::before {
  content: '';
  box-shadow: 0 0 10px var(--color-shadow);
  position: absolute;
  z-index: var(--layer-lowest);
  inset: 0;
  clip-path: inset(0 0 -50px 0); /* stylelint-disable-line */
}

@media screen and (min-width: 750px) {
  .bottom-shadow--mobile::before {
    display: none;
  }
}

.video-placeholder-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: var(--size-style-aspect-ratio, auto);
}

:not(deferred-media) > .video-placeholder-wrapper {
  width: var(--video-placeholder-width);
}

.video-placeholder-wrapper > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*
 * Slideshow Component
 */
slideshow-component {
  --cursor: grab;
  --slide-offset: 6px;

  position: relative;
  display: flex;
  flex-direction: column;
  timeline-scope: var(--slideshow-timeline);
}

slideshow-component.slideshow--content-below-media slideshow-slide {
  display: grid;
}

.slideshow--content-below-media slideshow-slide :is(.slide__image-container, .slide__content) {
  position: static;
}

.slideshow--content-below-media slideshow-slide {
  grid-template-rows: var(--grid-template-rows);

  @media screen and (min-width: 750px) {
    grid-template-rows: var(--grid-template-rows-desktop);
  }
}

.slide__content {
  @supports (animation-timeline: auto) {
    opacity: 0;
    animation: slide-reveal both linear;
    animation-timeline: var(--slideshow-timeline);
  }

  @media (prefers-reduced-motion) {
    opacity: 1;
    animation: none;
  }
}

/*
 * Force Safari to recalculate the timeline state on timeline refresh (after loop)
*/
slideshow-component[refreshing-timeline] .slide__content {
  animation: none;
}

.slideshow--single-media {
  --cursor: default;
}

a slideshow-component {
  --cursor: pointer;
}

/*
 * Slideshow Slides
 */
slideshow-slides {
  width: 100%;
  position: relative;
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-color: transparent transparent;
  scrollbar-width: none;
  gap: var(--slideshow-gap, 0);
  cursor: var(--cursor);
  min-height: var(--slide-min-height);

  @media (prefers-reduced-motion) {
    scroll-behavior: auto;
  }

  &::-webkit-scrollbar {
    width: 0;
  }

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

  &::-webkit-scrollbar-thumb {
    background: transparent;
    border: none;
  }

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

slideshow-component[disabled='true'] slideshow-slides {
  overflow: hidden;
}

/**
 * By default, slideshows have overflow: hidden (no compositor layer).
 * When the slideshow enters the viewport, JavaScript adds [in-viewport] which enables scrolling.
 */
slideshow-component:not([in-viewport]) slideshow-slides {
  overflow: hidden;
}

slideshow-component[mobile-disabled] slideshow-slides {
  @media screen and (max-width: 749px) {
    overflow: hidden;
  }
}

slideshow-slide {
  position: relative;
  scroll-snap-align: center;
  width: var(--slide-width, 100%);
  max-height: 100%;
  flex-shrink: 0;
  view-timeline-name: var(--slideshow-timeline);
  view-timeline-axis: inline;
  content-visibility: auto;
  contain-intrinsic-size: auto none;
  border-radius: var(--corner-radius, 0);
  overflow: hidden;

  slideshow-component[actioned] &,
  &[aria-hidden='false'] {
    content-visibility: visible;
  }

  slideshow-component slideshow-slide:not([aria-hidden='false']) {
    content-visibility: hidden;
  }

  &[hidden]:not([reveal]) {
    display: none;
  }

  /* Make inactive slides appear clickable */
  &[aria-hidden='true'] {
    cursor: pointer;
  }
}

slideshow-slide .slide__image-container--rounded {
  border-radius: var(--corner-radius, 0);
}

slideshow-slide.product-media-container--tallest {
  content-visibility: visible;
}

@media screen and (max-width: 749px) {
  /* Media gallery has a peeking slide on the right side always, and on the left side when the current slide is the last one */
  .media-gallery--hint
    :is(
      slideshow-slide:has(+ slideshow-slide[aria-hidden='false']:last-of-type),
      slideshow-slide[aria-hidden='false'] + slideshow-slide
    ) {
    content-visibility: auto;

    slideshow-component[actioned] & {
      content-visibility: visible;
    }
  }
}

/*
 * Collection and Resource list carousels have peeking slides on both sides.
 * Card galleries preview the next or previous images on 'pointerenter', so we
 * try to kick load them beforehand (they are lazy loaded otherwise).
 */
:is(.resource-list__carousel, .card-gallery)
  :is(
    slideshow-slide:has(+ slideshow-slide[aria-hidden='false']),
    slideshow-slide[aria-hidden='false'] + slideshow-slide
  ) {
  content-visibility: auto;

  slideshow-component[actioned] & {
    content-visibility: visible;
  }
}

/*
 * Be specific about HTML children structure to avoid targeting nested slideshows.
 * Ensure that the content is 'visible' while scrolling instead of 'auto' to avoid issues in Safari.
 */
slideshow-component:is([dragging], [transitioning], :hover) > slideshow-container > slideshow-slides > slideshow-slide {
  content-visibility: visible;
}

slideshow-slides[gutters*='start'] {
  padding-inline-start: var(--gutter-slide-width, 0);
  scroll-padding-inline-start: var(--gutter-slide-width, 0);
}

slideshow-slides[gutters*='end'] {
  padding-inline-end: var(--gutter-slide-width, 0);
}

slideshow-component[dragging] {
  --cursor: grabbing;

  * {
    pointer-events: none;
  }
}

slideshow-component[dragging] slideshow-arrows {
  display: none;
}

slideshow-container {
  width: 100%;
  display: block;
  position: relative;
  grid-area: container;
  container-type: inline-size;
  background-color: var(--color-background);
}

@media screen and (min-width: 750px) {
  .media-gallery--carousel slideshow-component:has(slideshow-controls[thumbnails]) {
    &:has(slideshow-controls[pagination-position='right']) {
      display: grid;
      grid-template:
        'container controls' auto
        'arrows controls' min-content
        / 1fr auto;
    }

    &:has(slideshow-controls[pagination-position='left']) {
      display: grid;
      grid-template:
        'controls container' auto
        'controls arrows' min-content
        / auto 1fr;
    }

    slideshow-controls[pagination-position='left'] {
      order: -1;
    }
  }
}

/* Slideshow Play/Pause */
.slideshow-control:is(.icon-pause, .icon-play) {
  color: var(--color-active);

  &:hover {
    color: var(--color-hover);
  }

  svg {
    display: none;
  }
}

slideshow-component:is([autoplay]) {
  &:is([paused]) {
    .icon-play > svg {
      display: block;
    }
  }

  &:not([paused]) {
    .icon-pause > svg {
      display: block;
    }
  }
}

/* Slideshow Arrows */
slideshow-arrows {
  --cursor-previous: w-resize;
  --cursor-next: e-resize;

  position: absolute;
  inset: 0;
  display: flex;
  z-index: var(--layer-heightened);
  pointer-events: none;
  mix-blend-mode: difference;
  align-items: flex-end;

  &[position='left'] {
    justify-content: flex-start;
    padding-inline: var(--padding-xs);
  }

  &[position='right'] {
    justify-content: flex-end;
    padding-inline: var(--padding-xs);
  }

  &[position='center'] {
    justify-content: space-between;
    align-items: center;
  }
}

slideshow-arrows:has(.slideshow-control--shape-square),
slideshow-arrows:has(.slideshow-control--shape-circle) {
  mix-blend-mode: normal;
}

slideshow-component[disabled='true'] slideshow-arrows {
  display: none;
}

slideshow-arrows .slideshow-control {
  pointer-events: auto;
  opacity: 0;
  min-height: var(--minimum-touch-target);
  min-width: var(--minimum-touch-target);
  padding: 0 var(--padding-xs);
  color: var(--color-white);
}

slideshow-arrows .slideshow-control.slideshow-control--style-none {
  display: none;
}

.media-gallery--carousel slideshow-arrows .slideshow-control {
  padding-inline: 0 var(--padding-md);
  opacity: 1;
}

.card-gallery slideshow-arrows .slideshow-control {
  /* Align icons with quick-add button */
  padding-inline: var(--padding-xl);

  @container (max-width: 249px) {
    padding-inline: 0 var(--padding-sm);
  }
}

: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;
  }
}

@keyframes slide-reveal {
  0% {
    translate: calc(var(--slideshow-slide-offset, 6) * 1rem) 0;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    translate: calc(var(--slideshow-slide-offset, 6) * -1rem) 0;
    opacity: 0;
  }
}

.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));
  }
}

.resource-list--carousel-mobile {
  display: block;

  @media screen and (min-width: 750px) {
    display: none;
  }
}

.resource-list {
  --resource-list-mobile-gap-max: 9999px;
  --resource-list-column-gap: min(var(--resource-list-column-gap-desktop), var(--resource-list-mobile-gap-max));
  --resource-list-row-gap: min(var(--resource-list-row-gap-desktop), var(--resource-list-mobile-gap-max));

  width: 100%;

  @media screen and (max-width: 749px) {
    --resource-list-mobile-gap-max: 12px;
  }

  @container resource-list (max-width: 749px) {
    --resource-list-mobile-gap-max: 12px;
  }
}

.resource-list--grid {
  display: grid;
  gap: var(--resource-list-row-gap) var(--resource-list-column-gap);
  grid-template-columns: var(--resource-list-columns-mobile);

  @media screen and (min-width: 750px) {
    grid-template-columns: var(--resource-list-columns);
  }

  @container resource-list (max-width: 449px) {
    grid-template-columns: var(--resource-list-columns-mobile);
  }

  @container resource-list(min-width: 450px) and (max-width: 749px) {
    --resource-list-columns-per-row: 3;

    grid-template-columns: repeat(var(--resource-list-columns-per-row), 1fr);

    /* Avoid orphan in last row when there are 4, 7, or 10 items */
    &:has(.resource-list__item:first-child:nth-last-child(3n + 1)),
    /* Clean two full rows when there are 8 items */
    &:has(.resource-list__item:first-child:nth-last-child(8n)) {
      --resource-list-columns-per-row: 4;
    }
  }

  @container resource-list (min-width: 750px) {
    grid-template-columns: repeat(var(--resource-list-columns-per-row), 1fr);

    &:has(.resource-list__item:first-child:nth-last-child(n + 9)) {
      --resource-list-columns-per-row: 5;
    }

    &:has(.resource-list__item:first-child:nth-last-child(n + 7):nth-last-child(-n + 8)) {
      --resource-list-columns-per-row: 4;
    }

    &:has(.resource-list__item:first-child:nth-last-child(6)) {
      --resource-list-columns-per-row: 3;
    }

    &:has(.resource-list__item:first-child:nth-last-child(5)) {
      --resource-list-columns-per-row: 5;
    }

    &:has(.resource-list__item:first-child:nth-last-child(-n + 4)) {
      --resource-list-columns-per-row: 4;
    }
  }

  @container resource-list (min-width: 1200px) {
    &:has(.resource-list__item:first-child:nth-last-child(6)) {
      --resource-list-columns-per-row: 6;
    }
  }
}

.resource-list__item {
  height: 100%;
  color: var(--color-foreground);
  text-decoration: none;
}

.resource-list__carousel {
  --slide-width: 60vw;

  width: 100%;
  position: relative;
  container-type: inline-size;
  container-name: resource-list-carousel;

  .slideshow-control[disabled] {
    display: none;
  }

  .slideshow-control--next {
    margin-inline-start: auto;
  }
}

@container resource-list-carousel (max-width: 749px) {
  .resource-list__carousel .resource-list__slide {
    --slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
  }
}

@container resource-list-carousel (min-width: 750px) {
  .resource-list__carousel .resource-list__slide {
    --section-slide-width: calc(
      (100% - (var(--resource-list-column-gap) * (var(--column-count) - 1)) - var(--peek-next-slide-size)) /
        var(--column-count)
    );
    --fallback-slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
    --slide-width: var(--section-slide-width, var(--fallback-slide-width));
  }
}

.resource-list__carousel slideshow-slides {
  gap: var(--resource-list-column-gap);

  /* Add padding to prevent hover animations from being clipped in slideshow
     15px accommodates:
     - Scale effect (9px on each side from 1.03 scale)
     - Lift effect (4px upward movement)
     - Shadow (15px spread with -5px offset)
     Using 16px for better alignment with our spacing scale */

  margin-block: -16px;
  padding-block: 16px;
}

.resource-list__carousel slideshow-arrows {
  padding-inline: var(--util-page-margin-offset);
}

.resource-list__carousel .resource-list__slide {
  width: var(--slide-width);
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 0;
}

/* 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);
}

accordion-custom {
  details {
    &::details-content,
    .details-content {
      block-size: 0;
      overflow-y: clip;
      opacity: 0;
      interpolate-size: allow-keywords;
      transition: content-visibility var(--animation-speed-slow) allow-discrete,
        padding-block var(--animation-speed-slow) var(--animation-easing),
        opacity var(--animation-speed-slow) var(--animation-easing),
        block-size var(--animation-speed-slow) var(--animation-easing);
    }

    /* Disable transitions when the content toggle is not caused by the direct user interaction, e.g. opening the filters on mobile. */
    &:not(:focus-within)::details-content,
    &:not(:focus-within) .details-content {
      transition: none;
    }

    &:not([open]) {
      &::details-content,
      .details-content {
        padding-block: 0;
      }
    }

    &[open] {
      &::details-content,
      .details-content {
        opacity: 1;
        block-size: auto;

        @starting-style {
          block-size: 0;
          opacity: 0;
          overflow-y: clip;
        }

        &:focus-within {
          overflow-y: visible;
        }
      }
    }
  }
}

accordion-custom[data-disable-on-mobile='true'] summary {
  @media screen and (max-width: 749px) {
    cursor: auto;
  }
}

accordion-custom[data-disable-on-desktop='true'] summary {
  @media screen and (min-width: 750px) {
    cursor: auto;
  }
}

text-component {
  --shimmer-text-color: rgb(var(--color-foreground-rgb) / var(--opacity-50));
  --shimmer-color-light: rgb(var(--color-foreground-rgb) / var(--opacity-10));
  --shimmer-speed: 1.25s;

  display: inline-block;
  position: relative;
  transition: color var(--animation-speed-slow) ease;
  line-height: 1;

  &::after {
    content: attr(value);
    position: absolute;
    inset: 0;
    color: transparent;
    opacity: 0;
    transition: opacity var(--animation-speed-slow) var(--animation-easing);
    pointer-events: none;
    background-image: linear-gradient(
      -85deg,
      var(--shimmer-text-color) 10%,
      var(--shimmer-color-light) 50%,
      var(--shimmer-text-color) 90%
    );
    background-clip: text;
    background-size: 200% 100%;
    background-position: 100% 0;
    place-content: center;
  }

  &[shimmer] {
    color: transparent;

    &::after {
      opacity: 1;
      animation: text-shimmer var(--shimmer-speed) infinite linear;
    }
  }
}

@keyframes text-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

/* 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 title truncation - applied only to zoom-out view */
[product-grid-view='zoom-out'] :is(.product-card, .product-grid__card) :is(h4, .h4) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

/* Product card title truncation - applied on mobile regardless of view */
@media screen and (max-width: 749px) {
  :is(.product-card, .product-grid__card) :is(h4, .h4) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
  }
}

.product-card:hover,
.collection-card:hover,
.resource-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);
}

.header .product-card:hover,
.header .collection-card:hover,
.header .resource-card:hover,
.header-drawer .product-card:hover,
.header-drawer .collection-card:hover,
.header-drawer .resource-card:hover {
  z-index: auto;
  transform: none;
  box-shadow: none;
}

.predictive-search-results__inner {
  flex-grow: 1;
  overflow-y: auto;
  padding-block: var(--padding-lg);
  container-type: inline-size;
  color: var(--color-foreground);
}

/* 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%);
  }
}

.product-recommendations {
  display: block;
}

.product-recommendations__skeleton-item {
  aspect-ratio: 3 / 4;
  background-color: var(--color-foreground);
  opacity: var(--skeleton-opacity);
  border-radius: 4px;
}

@media screen and (max-width: 749px) {
  .product-recommendations__skeleton-item:nth-child(2n + 1) {
    display: none;
  }
}

product-recommendations:has([data-has-recommendations='false']) {
  display: none;
}

.add-to-cart-button {
  --text-speed: 0.26;
  --base-delay: calc(var(--text-speed) * 0.25);
  --tick-speed: 0.1;
  --ring-speed: 0.2;
  --check-speed: 0.2;
  --burst-speed: 0.32;
  --step-delay: 3;
  --speed: 1;

  user-select: none;
  transition-property: color, box-shadow, background-color, scale, translate;
  transition-duration: var(--animation-speed);
  transition-timing-function: var(--ease-out-cubic);

  &:active {
    scale: 0.99;
    translate: 0 1px;
  }
}

.add-to-cart-button .svg-wrapper .checkmark-burst {
  width: 30px;
  height: 30px;
}

.add-to-cart-text {
  --atc-opacity: 0;
  --atc-destination: -1em;

  display: flex;
  gap: var(--gap-2xs);
  align-items: center;
  justify-content: center;
  animation-duration: var(--animation-speed);
  animation-timing-function: var(--animation-easing);
  animation-fill-mode: forwards;
  transition: width var(--animation-speed) var(--animation-easing),
    opacity var(--animation-speed) var(--animation-easing);
}

.add-to-cart__added {
  --atc-opacity: 1;
  --atc-destination: 0px;

  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.add-to-cart__added-icon {
  width: 32px;
  height: 32px;
}

[data-added='true'] .add-to-cart-text,
[data-added='true'] .add-to-cart__added {
  animation-name: atc-slide;
}

.checkmark-burst {
  opacity: 0;
  overflow: visible;

  .burst {
    rotate: 20deg;
  }

  .check {
    opacity: 0.2;
    scale: 0.8;
    filter: blur(2px);
    transform: translateZ(0);
  }

  :is(.ring, .line, .check, .burst, .tick) {
    transform-box: fill-box;
    transform-origin: center;
  }

  :is(.line) {
    stroke-dasharray: 1.5 1.5;
    stroke-dashoffset: -1.5;
    translate: 0 -180%;
  }

  g {
    transform-origin: center;
    rotate: calc(var(--index) * (360 / 8) * 1deg);
  }
}

.add-to-cart-button[data-added='true'] .checkmark-burst {
  opacity: 1;
}

.add-to-cart-button[data-added='true'] {
  .check {
    opacity: 1;
    scale: 1;
    filter: blur(0);
  }

  .tick {
    scale: 1.75;
  }

  .ring {
    opacity: 0;
    scale: 1;
  }

  .line {
    stroke-dashoffset: 1.5;
  }

  .add-to-cart-text {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: circle(0% at 50% 50%);
    filter: blur(2px);
    opacity: 0;
    translate: 0 4px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .add-to-cart-button[data-added='true'] {
    .check {
      transition-property: opacity, scale, filter;
      transition-duration: calc(calc(var(--check-speed) * 1s));
      transition-delay: calc((var(--base-delay) * 1s));
      transition-timing-function: var(--ease-out-quad);
    }

    .tick {
      transition-property: scale;
      transition-duration: calc((calc(var(--tick-speed) * 1s)));
      transition-delay: calc(((var(--base-delay) + (var(--check-speed) * (var(--step-delay) * 1.1))) * 1s));
      transition-timing-function: ease-out;
    }

    .ring {
      transition-property: opacity, scale;
      transition-duration: calc((calc(var(--ring-speed) * 1s)));
      transition-delay: calc(((var(--base-delay) + (var(--check-speed) * var(--step-delay))) * 1s));
      transition-timing-function: var(--ease-out-quad);
    }

    .line {
      transition-property: stroke-dashoffset;
      transition-duration: calc((calc(var(--burst-speed) * 1s)));
      transition-delay: calc(((var(--base-delay) + (var(--check-speed) * var(--step-delay))) * 1s));
      transition-timing-function: var(--ease-out-cubic);
    }
  }

  .add-to-cart-text {
    transition-property: clip-path, opacity, filter, translate;
    transition-duration: calc((var(--text-speed) * 0.6s)), calc((var(--text-speed) * 1s));
    transition-timing-function: ease-out;
  }
}

.add-to-cart-text {
  /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
  clip-path: circle(100% at 50% 50%);
}

@keyframes atc-slide {
  to {
    opacity: var(--atc-opacity, 1);
    translate: 0px var(--atc-destination, 0px);
  }
}

/* CUSTOM font-family */
/* IV _ s: #FAF5ED
SB_P: #D3C6AE
DG_p: #2B2B2B
SG_S: #777777
OG_S: #076054
Pg_P: #054239 */

:root {
  --primary-green-dark: #00352f;
}
@font-face {
    font-family: 'Futura';
    src: url('FuturaCyrillicBook.eot');
    src: url('FuturaCyrillicBook.eot?#iefix') format('embedded-opentype'),
        url('FuturaCyrillicBook.woff2') format('woff2'),
        url('FuturaCyrillicBook.woff') format('woff'),
        url('/cdn/shop/files/Futura.ttf?v=1772457714') format('truetype'),
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
.section.section--page-width {
  padding: 0px 0px;
}


/* CUSTOM CSS */
.header-actions__cart-icon {
  display: none;
}
footer .menu__item.h5 {
  text-transform: capitalize;
}
.slideshow-control.button-secondary.button-unstyled.icon-pause svg {
  display: none;
}
#shopify-section-sections--28917387264337__header_section .header__row.header__row--top.color-scheme-3.section.section--full-width-margin.section--page-width.divider--page-width {
	background-color: #f2ede5;
}
#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ .header-container {
  max-width: 100%;
  margin: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0px;
}
.dropdown {
  background-image: url('/cdn/shop/files/Arrow.png?v=1772539564');
  background-repeat: no-repeat;
  background-position: 98% 12px;
  padding: 0px 15px 0px 0px !important;
}
.contact-info {
  color: #fff;
  font-size: 13px;
}
#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ .contact-info a {
  color: white;
  text-decoration: none;
  margin-right: 2px;
}
#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ {
  font-family: 'Futura' !important;
  background-color: #2b2b2b;
}

#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ nav ul {
  list-style: none;
  display: flex;
  margin: 4px 0px 4px;
}

#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ nav ul li {
  margin: 0 15px;
}

#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ .contact-btn a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  background-color: #444;
  padding: 5px 10px;
  border-radius: 4px;
}

#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ .header-container {
  background-color: #2b2b2b;
}
.dropdown {
  position: relative;
  display: inline-block;
  cursor:pointer;
}

.dropdown a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  padding: 5px 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 160px;
  z-index: 999;
  right: 0px;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a:hover {
  background-color: #575757;
}
.mega-menu__column div:first-child a span {
  /* cursor: auto; */
  font-weight: bold;
}

.header__row.header__row--top.color-scheme-3.section.section--full-width-margin.section--page-width.divider--page-width .header__columns.spacing-style {
  background-color: #f2ede5 !important;
  padding: 15px 30px !important;
}
.header__row.header__row--bottom.color-scheme-1.section.section--full-width-margin.section--page-width.mobile\:hidden {
  background-color: #fff;
}
#shopify-section-sections--28917387264337__custom_liquid_xqxRnR a {
  position: absolute;
  top: 25px;
  z-index: 999;
  border: 1px solid #2B2B2B;
  padding: 8px 15px;
  border-radius: 4px;
  font-family: Futura;
  font-size: 16px;
  color: #2B2B2B;
  left: 30px;

}
#shopify-section-template--29244362162513__section_KaYhqt, #shopify-section-template--29473850098001__section_KaYhqt {
	padding: 0px;
}
#shopify-section-sections--28917387264337__custom_liquid_xqxRnR a:hover {
  background-color:var(--primary-green-dark);
  color: #f2ede5 !important;
  border: 1px solid var(--primary-green-dark);
}
.header__row.header__row--bottom.color-scheme-1.section.section--full-width-margin.section--page-width.mobile\:hidden .header__columns.spacing-style {
  padding: 0px 0px 0px 0px;
}
.header-container a {
  font-size: 13px !important;
}
.menu-list__link-title{
  font-family: 'Futura';
}
 .slideshow-controls__dots {
  position: absolute;
  bottom: -30px !important;
} 
/* .slideshow-controls__dots button::after {
  background-color: #cccccc;
} */

/* .slideshow-controls__dots button[aria-selected="true"]::after {
  background-color: #D3C6AE !important;
} */

.slideshow-controls__dots button::after{
  background-color: transparent !important;
}
.slideshow-controls__dots button::after {
  box-shadow: inset 0 0 0 1.5px #1a3059 !important;
  width: 13px !important;
  height: 13px !important;
  border-radius: 30px !important;
}
.spacing-style.text-block.text-block--AcUVwMmtFQnl5S21OZ__text_YNeBaB.rte h1, .spacing-style.text-block.text-block--AWDErUGZWRzZkaVdYc__text_pYmaRT.rte p{
  color: #2B2B2B !important;
}

.slideshow-controls__dots button{
  margin: 0px 1px !important;
}
.slideshow-controls__dots{
  padding: 0px !important;
}
.slideshow-controls__dots button[aria-selected="true"]::after {
  box-shadow: inset 0 0 0 1.5px #1a3059;
}
.slideshow-controls__dots button[aria-selected="true"]::after {
  background-color: #1a3059 !important;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .slideshow--content-on-media .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .size-style.button-secondary {
 border-radius: 3px;
  background-color: #2B2B2B;
  padding: 10px 20px;
  margin-top: 0px;
  font-size: 14px;
  color: #FAF5ED;
  border: 0px solid #faf5ed;
  position: absolute;
  bottom: 15px;
}
.spacing-style.text-block.text-block--ASmgrNmo1UlhGNjJpO__text_nr8cNF.rte.text-block--align-right.text-block--full-width {
  width: 52%;
}
.size-style.button-secondary.button-secondary--AKzQ4Rm9yam90NnRpZ__button_KnnDzm{
   border: 1px solid #faf5ed !important;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .slideshow--content-on-media .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column a.size-style.button-secondary:hover {
  border: 0px solid #faf5ed;
  background-color: var(--primary-green-dark);
  color: #f2ede5 !important;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .spacing-style.slide__content.color-scheme-6.background-transparent h1 {
  width: 70%;
  line-height: 1.2;
  font-size: 65px;
}
.spacing-style.text-block.text-block--AYStLajQ5STdLa1B5S__text_X4UqnW.custom.text-block--align-center.text-block--full-width.custom-typography.custom-font-size.custom-color {
  width: 70%;
}
.spacing-style.text-block.text-block--AVWRKUnRTSDN1NHVVV__text_tCcGFT.rte h1 {
  width: 70%;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .spacing-style.slide__content.background-transparent .rte h1 strong {
    font-weight: normal !important;
  font-family: 'Baskervville' !important;
  display: inline-block !important;
}
header .menu-list__list-item a {
  padding: 20px 22px;
  font-size: 16px;
}
/* .size-style.button-secondary.button-secondary--AKzQ4Rm9yam90NnRpZ__button_KnnDzm {
  margin-top: 150px !important;
} */
.slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	margin-left: 25%;
}
.resource-list__carousel .slideshow-control[disabled] {
  display: block;
}
#shopify-section-template--28917386871121__product_list_fa6P9H .button.quick-add__button.quick-add__button--add.add-to-cart-button {
  opacity: 0;
}
slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  margin-left: 0px !important;
}
.slideshow--content-on-media  .spacing-style.slide__content.color-scheme-6.background-transparent {
  padding: 20px 30px;
}
.mega-menu__column div:first-child a span {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400 !important;
  font-family: 'Futura' !important;
}
.spacing-style.text-block.text-block--ARFl6L1pUeU1rVW5BR__text_TAh6ba.rte.text-block--align-center.text-block--full-width p {
  padding-top: 6px;
}
.mega-menu__link.mega-menu__link--parent span {
  font-size: 18px !important;
  font-weight: 500 !important;
  font-family: 'Baskervville' !important;
  cursor: default !important;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .spacing-style.slide__content .spacing-style.text-block.rte p{
  width: 50%;
  color: #fff;
}
.spacing-style.text-block.text-block--AVWRKUnRTSDN1NHVVV__text_tCcGFT.rte h1 {
  color: #fff;
}
.slideshow-control.button-secondary.button-unstyled.icon-pause {
  display: none;
}
.slideshow-control.button-secondary.button-unstyled.icon-play {
  display: none;
}
.spacing-style.text-block.text-block--AL3poWThoR0NVUWlqZ__text_WHTcGc.rte p {
  font-size: 24px;
  font-family: 'Baskervville' !important;
}
#shopify-section-template--28917386871121__section_4AnkxM .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper.mobile-column div {
  width: fit-content;
  margin: auto;
}
#shopify-section-template--28917386871121__section_4AnkxM p{
  font-size: 20px;
  font-family: 'Futura' !important;
  color: #2B2B2B !important
}
.spacing-style.text-block.h3 h3 {
  font-size: 44px;
  color: #2B2B2B;
  /*padding-bottom: 10px;*/
}
div#shopify-section-template--28917386871121__product_list_fa6P9H .contents.user-select-text .spacing-style.text-block.rte.text-block--align-left p {
  font-size: 17px;
  font-family: 'Futura' !important;
}
.product-card .price {
  color: #054239 !important;
  font-family: 'Baskervville', revert-layer;
  /* font-family: 'Futura'; */
  font-size: 20px;
  font-weight: unset;
}
#shopify-section-template--28917386871121__collection_list_q69iNL .slideshow-control.slideshow-control--previous.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent.flip-x {
  background-image: url('/cdn/shop/files/Button_Carousel-left.png?v=1772522821');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 25px !important;
  background-color: transparent !important;
  opacity: 1 !important;
    transform: rotate(180deg);
    animation: none !important;
    /* cursor: pointer; */
}
#shopify-section-template--28917386871121__collection_list_q69iNL .slideshow-control.slideshow-control--next.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent{
  background-image: url('/cdn/shop/files/Button_Carousel-right.png?v=1772522821');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 25px !important;
  background-color: transparent !important;
  opacity: 1 !important;
    animation: none !important;
    /* cursor: pointer; */
  
}
#shopify-section-template--28917386871121__collection_list_q69iNL .slideshow-control.slideshow-control--previous.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent.flip-x svg, #shopify-section-template--28917386871121__collection_list_q69iNL .slideshow-control.slideshow-control--next.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent svg {
  width: 0px;
}
.product-media__image {
  border: 1px solid #D3C6AE;
}
.collection-card__content.layout-panel-flex--column p {
  position: relative;
  bottom: 10px !important;
  text-align: right !important;
  right: 10px;
  width: auto !important;
  margin: auto !important;  font-size: 25px !important;
  font-family: 'Baskervville' !important;
  color: #fff;
}
.collection-card__content.layout-panel-flex--column {
  position: absolute;
  right: 0px !important;
  flex-wrap: wrap-reverse !important;
}
.collection-card__content.layout-panel-flex--column .spacing-style.text-block.rte {
  width: auto;
  margin: auto 0px 0px 0px;
}
/* .image-block.image-block--AWUhRMCt4OE40SXhnU__image_8FTCtx.image-block--height-fit.spacing-style.size-style {
  width: 60%;
} */
.spacing-style.text-block.text-block--AY2hzeFpSOWxlUXRGd__text_pV6NLr.rte p {
  font-size: 24px;
  font-family: 'Baskervville';
}

.spacing-style.text-block.text-block--AQWE5Q3UxTFkzcWFVc__text_BtjVhJ.rte.text-block--align-center p {
  width: 620px;
}
.size-style.button.button--AL1FpNnA5aUNCNnJab__button_zjkmLy {
  margin-top: 15px;
}
.section-wrapper {
  padding: 25px 0px;
}
#shopify-section-template--28917386871121__section_wAXYfe {
  padding: 0px 0px 30px;
}
#shopify-section-template--28917386871121__section_byF3nt {
  padding: 0px 0px;
}
#shopify-section-sections--28917387297105__section_Gb6rtR {
  padding: 70px 0px 0px;
}
.size-style.button {
  background-color: #FAF5ED;
  color: #2B2B2B;
  border: 1px solid #2B2B2B;
  border-radius: 3px;
  font-size: 16px;
  padding: 8px 20px 8px;
  font-family: 'Futura' !important;
}
.size-style.button:hover {
  background-color: var(--primary-green-dark);
  color: #f2ede5 !important;
  border: 1px solid var(--primary-green-dark);
}
.featured-blog-posts-card__content.layout-panel-flex--column {
  flex-direction: column-reverse;
}
.featured-blog-posts-card__content.layout-panel-flex--column span {
  font-size: 13px;
  color: #777;
  font-family: 'Futura' !important;
  padding-top: 6px;
}
.featured-blog-posts-card__content.layout-panel-flex--column h4 {
  font-size: 17px;
  color: #2B2B2B;
  font-family: 'Futura' !important;
  line-height: 27px;
  width: 100%;
}
#shopify-section-template--28917386871121__section_byF3nt .image-block {
  position: relative !important;

}
#shopify-section-template--28917386871121__section_byF3nt .image-block::after {
  content: "" !important;
  position: absolute !important;
  width: 350px;
  height: 10px;
  border-top: 2px dashed var(--primary-green-dark);
  left: 40px;
  top: 25px;
  z-index: -1;
}
#shopify-section-template--28917386871121__section_byF3nt 
.group-block-content > .group-block:last-of-type 
.image-block::after {
  display: none !important;
}
.spacing-style.text-block.h6 p {
  font-size: 24px;
  color: #2B2B2B !important;
  font-family: 'Baskervville';
  padding: 15px 0px;
}
.spacing-style.text-block p {
  font-size: 17px;
  font-family: 'Futura';
}
#shopify-section-template--28917386871121__section_byF3nt .spacing-style.text-block p {
  color: #2B2B2B;
}
#shopify-section-sections--28917387297105__section_PUCKjJ .border-style.custom-section-content {
  border-top: 1px solid;
  padding-top: 30px !important;
  display: block !important;
}
#shopify-section-sections--28917387297105__section_Gb6rtR .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  padding-top: 70px;
}
#shopify-section-sections--28917387297105__section_4rjMHw {
  padding: 0px 0px 20px;
}

.spacing-style.text-block.text-block--AemFsRFFWOGN1VXFSO__text_nmtDxV.h3.text-block--align-center.text-block--full-width h3 {
  color: #fff !important;
  padding: 0px;
}

header .menu-list__list-item a:hover {
  color: var(--primary-green-dark) !important;
}
.mega-menu__column .mega-menu__link:hover {
  color: #D3C6AE !important;
}
.slideshow-control.slideshow-control--next.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent {
  background-image: url(/cdn/shop/files/Button_Carousel-right.png?v=1772522821);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 25px !important;
  background-color: transparent !important;
  opacity: 1 !important;
}
.slideshow-control.slideshow-control--previous.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent.flip-x{
  background-image: url(/cdn/shop/files/Button_Carousel-left.png?v=1772522821);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 25px !important;
  background-color: transparent !important;
  opacity: 1 !important;
  transform: rotate(180deg);
  animation: none !important
}
#shopify-section-template--28917386871121__slideshow_GYGrVh h1 strong, #shopify-section-template--28917386871121__slideshow_GYGrVh h1 {
	color: #fff;
	font-size: 44px!important;
      font-weight: 400;
    font-family: Baskervville;
}
.spacing-style.text-block.text-block--AcUVwMmtFQnl5S21OZ__text_YNeBaB.rte h1,.spacing-style.text-block.text-block--AcUVwMmtFQnl5S21OZ__text_YNeBaB.rte h1 strong, .spacing-style.text-block.text-block--AWDErUGZWRzZkaVdYc__text_pYmaRT.rte p {
	color: #2B2B2B !important;
}
.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .rte h1 {
    font-weight: 400;
    font-family: Baskervville;
	font-size: 33px !important
}
.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .rte h1 strong {
    color: #c6b049;
        font-family: Baskervville;
      font-weight: 400 !important;
}
.image-block.image-block--AQVV1MENHWW5DVGw1Q__image_xbWYi7 .image-block__image.border-style:hover, .image-block.image-block--AVEhRanlNOXJlTlRNQ__image_xbWYi7  .image-block__image.border-style:hover, .image-block.image-block--AWUhRMCt4OE40SXhnU__image_8FTCtx .image-block__image.border-style:hover{
  transform: inherit !important;
}
.slideshow-control.slideshow-control--next.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent svg, .slideshow-control.slideshow-control--previous.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent.flip-x svg {
  width: 0px !important;
}
.spacing-style.text-block.text-block--ATVRweFlzUmFrN0Rmc__text_fakekK.rte.text-block--align-center.text-block--full-width p {
  width: 40%;
}
.spacing-style.text-block.text-block--AeUgzMUhycVJReE1ST__text_qgh3N7.rte.text-block--align-center.text-block--full-width p {
  font-size: 19px;
}
#shopify-section-template--28917386871121__section_jrj9tk .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style a {
  background-color: #2b2b2b;
  color: #f2ede5;
  border: 1px solid #f2ede5 !important;
}
#shopify-section-template--28917386871121__section_jrj9tk{
  padding: 70px 0px 0px 0px;
}


.spacing-style.text-block.text-block--Ab3dEdE5vRjZ2SmprM__text_PmaAXC.h3.text-block--align-center.text-block--full-width h3 {
  padding: 0px !important;
  margin-top: -20px;
}
.spacing-style.text-block.text-block--ARFl6L1pUeU1rVW5BR__text_TAh6ba.rte.text-block--align-center.text-block--full-width p {
  margin-top: -20px;
}
#shopify-section-sections--28917387297105__section_Gb6rtR .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column img {
  width: 35px;
}
.spacing-style.text-block h4 {
  font-size: 20px;
}
#shopify-section-template--28917386871121__section_byF3nt .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child div .rte p {
  padding-bottom: 20px;
}
#shopify-section-template--28917386871121__section_jrj9tk .section.section--page-width.color-scheme-6 {
  padding: 50px 0px;
}
.spacing-style.text-block.h4 p {
  font-size: 27px;
  font-family: 'Baskervville';
}
#shopify-section-template--28917386871121__section_mG9qTj .spacing-style.text-block.h4 p {
  padding: 20px 0px;
}
#shopify-section-template--28917386871121__section_mG9qTj .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  margin: auto;
  width: 70%;
}
#shopify-section-template--28917386871121__section_mG9qTj .size-style.button {
  margin-top: 20px;
}
#shopify-section-template--28917386871121__section_mG9qTj .rte p {
  width: 80%;
}
.spacing-style.text-block.text-block--AdUNZcGxMQ1hrNnQ3Y__text_4PWwgm.h3.text-block--align-center.text-block--full-width {
  padding: 30px 0px;
}
#shopify-section-template--28917386871121__section_cfpngT .spacing-style.text-block h4 {
  padding: 7px 0px 0px;
}


#shopify-section-sections--28917387297105__section_Gb6rtR .layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content img {
    width: 40px !important;
}
#shopify-section-template--28917386871121__section_jrj9tk .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style a:hover{
  color: #f2ede5 !important;
  background-color: var(--primary-green-dark);
  border: 1px solid #f2ede5 !important;
}
.wlh-svg-Icon.wlh-svg-icon-heart-empty {
  padding: 12px !important;
  background-image: url('/cdn/shop/files/Vector.png?v=1772633041');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  margin: 10px;
  filter: saturate(40);
}
#shopify-section-template--28917386871121__section_4AnkxM .section.section--page-width.color-scheme-1 .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper {
  gap: 100px;
  padding-left: 60px;
}

.svg-wrapper svg {
  width: 60px !important;
  height: 25px !important;
}
.account-button__icon {
  width: 30px;
  height: 20px;
  margin: 0px 10px;
}
.collection-card__image {
  overflow: hidden; /* important */
}

.collection-card__image img {
  transition: transform 0.5s ease;
}

.resource-list__slide:hover img {
  /* transform: scale(1.08); */
  transform: scale(1.05);
  transition: transform 1.0s ease;
  /* transition: transform 0.3s ease; */
}
#shopify-section-template--28917386871121__section_mG9qTj .rte p {
  width: 80%;
  min-height: 81px;
}


/* Hide mobile items in desktop */
.mobile-phones,
.mobile-menu {
  display: none;
}

.headcontact-icons-outer {
	display: flex;
	align-content: center;
	align-items: center;
	align-self: center;
	width: max-content;
	margin: 10px auto;
	text-align: center;
}
.headcontact-btn.contact-btn-link.booking-btn a {
background-color: #2b2b2b;
  color: #fff!important;
  border: 1px solid #2B2B2B;
  border-radius: 3px;
  font-size: 14px!important;
  padding: 8px 20px 8px;
  font-family: 'Futura' !important;
  width: 100% !important;
  display: inline-block;
  margin-top: 5px;
  text-align: center;
}
.headcontact-btn.contact-btn-link.booking-btn {
	margin-top: 10px;
}

.headcontact-btn.contact-btn-link.booking-btn a:hover {
	background-color: var(--primary-green-dark);
	color: #f2ede5 !important;
	border: 1px solid var(--primary-green-dark) !important;
}

.headcontact-btn a:hover {
	background-color: var(--primary-green-dark) !important;
	color: #f2ede5 !important;
	border: 1px solid var(--primary-green-dark) !important;
}

.headcontact-email a {
	display: block;
	text-align: center;
		color: var(--color-foreground);
}

.headcontact-btn a {
background-color: #2b2b2b;
  color: #fff!important;
  border: 1px solid #2B2B2B;
  border-radius: 3px;
  font-size: 14px !important;
  padding: 8px 20px 8px;
  font-family: 'Futura' !important;
  width: 100% !important;
  display: inline-block;
  margin-top: 5px;
  text-align: center;
}
.headcontact-info-top {
	text-align: center;
}

.headcontact-number a {
	color: var(--color-foreground);
}
.contact-icon.chat img {
	width: 30px;
}
.headcontact-icon.whatsapp img {
	width: 30px;
}
.mobile-dropdown1 {
	display: none;
}
.mobile-dropdown1.active {
	display: block;
	position: absolute;
	position: absolute;
	right: 0;
	top: 33px;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	padding: 10px;
	min-width: 210px;
	border-radius: 6px;
	z-index: 999;
}


#shopify-section-template--28917386871121__section_byF3nt img {
  width: 50px;
}
#shopify-section-template--28917386871121__section_byF3nt .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .rte p {
  min-height: 110px;
}
footer .menu__item.h5 a:hover {
  color: var(--primary-green-dark) !important;
  transform: translateX(10px);
  display: inline-block;
  transition: transform 0.3s ease;
}
#shopify-section-sections--28917387297105__section_Gb6rtR .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--row {
  gap: 40px;
  padding: 50px 0px 20px;
}
.menu__item.h5 a {
  font-family: 'Futura';
  font-size: 16px;
}
.menu__heading__default {
  font-family: 'Baskervville';
}
/* MENU BUTTON */
.menu-btn {
	width: 45px;
	height: 45px;
	background: #eee8df;
	border-radius: 50%;
	position: fixed;
  top: 60%;
	left: auto;
	transform: translate(-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	z-index: 9999;
	transition: .3s;
  right: 27%;
  border: 1px solid #d3c6ae40;
  outline: 4px solid #faf5ed21;
  outline-offset: -5px;
  box-shadow: 0px 0px 6px #d3c6ae;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: #2b2b2b;
  transition: 0.3s;
  opacity: 0.7;
}

/* TRANSFORM INTO X */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 5px);
  margin: 0px 0px 0px 2px;
  background-color: #faf5ed;
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -6px);
  margin: 0px 0px 0px 2px;
  background-color: #faf5ed;
}


/* ICON LIST */
.floating-icons {
	position: fixed;
  /* right: 16px;
  top: -300px; */
  right: 27.8%;
  top: 44%;
	display: flex;
	flex-direction: column;
	gap: 12px;
  align-items: end;
	opacity: 0;
	pointer-events: none;
	transform: translate(0px);
	transition: .4s ease;
	z-index: 99;
	left: auto !important;
}

/* SHOW WHEN ACTIVE */
.floating-icons.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 0px;
}
.icon-circle img {
  width: 25px;
}
.icon-item a {
  display: flex;
  text-decoration: none;
  align-items: center;
  transition: background-color 0.3s ease, border-radius 0.3s ease; /* Smooth animation for both properties */
}

.icon-item a:hover {
  background-color: #D3C6AE;
  border-radius: 50px;
}

.icon-circle {
  width: 46px;
  height: 46px;
  background: #FAF5ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.icon-item a:hover .icon-circle {
  background-color: #d3c6ae;
}
.menu-btn.active {
  background: #d3c6ae;
  outline: transparent;
}

/* HOVER TEXT */
.icon-text {
  opacity: 0;
  transition: 0.3s;
  font-size: 13px;
  line-height: 1.2;
  display: block;
  font-family: 'Baskervville' !important;
  color: #2b2b2b;
  padding: 6px 0 6px 20px;
}

.icon-item:hover .icon-text {
  opacity: 1;
}

.slideshow-control.slideshow-control--next.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent:hover{
  background-image: url('/cdn/shop/files/State_Hover.png?v=1772709089') !important;
}
.slideshow-control.slideshow-control--previous.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent.flip-x:hover {
  background-image: url('/cdn/shop/files/Button_Carousel.png?v=1772712102') !important;
}

.spacing-style.text-block.text-block--AQXBnRm9aOUp3amErY__text_HJyViy.rte.text-block--align-center {
  width: 80%;
}

/* Kitchen page */

/* #shopify-section-template--29015669965137__slideshow_VjRQcd {
  background-image: url('/cdn/shop/files/Kitech-banner.png?v=1772722258');
} */
#shopify-section-template--29015669965137__slideshow_VjRQcd .slide__image-container svg {
  display: none;
  opacity: 0;
}
.spacing-style.text-block.text-block--AUENFODJwNXVFRFFOW__text_h89RBh.rte.text-block--align-left.text-block--full-width h1 strong {
  font-weight: 400 !important;
  display: block;
  font-family: 'Baskervville' !important;
}
.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .h3 p {
  font-size: 24px;
  font-family: Baskervville;
  padding: 10px 0;
}
#shopify-section-template--29015669965137__slideshow_CeUAqM {
  background-image: url('/cdn/shop/files/Accessories.png?v=1772731767');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#shopify-section-template--29015669965137__section_CkbxmG .background-image-container img, #shopify-section-template--29015669965137__section_xmgN4G  .background-image-container img, #shopify-section-template--29015669965137__section_HYQDct .background-image-container img {
  width: 1430px;
  margin: auto;
}
#shopify-section-template--29015669965137__section_xmgN4G .border-style.custom-section-content {
  padding-left: 30px;
}
#shopify-section-sections--28917387297105__section_yVctYz .border-style.custom-section-content {
  background-color: #faf5ed;
  padding: 40px 0 50px;
}
#shopify-section-sections--28917387297105__section_yVctYz .section-background.color-scheme-3 {
  background-color: transparent !important;
}
#shopify-section-template--29015669965137__slideshow_CeUAqM .slide__image-container svg {
  display: none;
  opacity: 0;
}
#jobList h3 a {
	color: var(--primary-green-dark);
}
/*
.size-style.button.button--AREtkWXVURGNPR1g0O__button_Li3WYF, .size-style.button.button--ATVBKOWZYdkMyK293Z__button_Ujtgt6 {
  border: 1px solid #faf5ed !important;
  background-color: #2b2b2b !important;
  color: #faf5ed;
}
.size-style.button.button--AREtkWXVURGNPR1g0O__button_Li3WYF:hover, .size-style.button.button--ATVBKOWZYdkMyK293Z__button_Ujtgt6:hover {
background-color: #076054 !important;;
  color: #f2ede5 !important;
  border: 1px solid #076054;
}*/
/* .size-style.button.button--ATVBKOWZYdkMyK293Z__button_Ujtgt6{
  margin-bottom: 20px !important;
  margin-top: -6px !important;
} */
#shopify-section-template--29015669965137__slideshow_VjRQcd .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
  padding: 50px 30px 30px;
}
#shopify-section-template--29015669965137__section_CkbxmG .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
  padding-left: 30px;
}
.spacing-style.text-block.text-block--AOVpEYlVWTlg0UUZCM__text_64T4E4.rte {
  padding: 0px;
}
.section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {
  color: var(--primary-green-dark);
  padding: 10px 0px;
  line-height: 42px;
}
.section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p strong {
  display: block;
  font-weight: normal;
}

#shopify-section-template--29015669965137__section_9GaR4C {
  padding: 0px 0px 30px;
}
#shopify-section-template--29015669965137__section_q6LPUx .image-block, #shopify-section-template--29015669965137__section_9GaR4C .image-block  {
  overflow: hidden; /* prevents image from overflowing when zooming */
}

.image-block  {
  overflow: hidden; /* prevents image from overflowing when zooming */
}

#shopify-section-template--29015669965137__section_q6LPUx .image-block__image, #shopify-section-template--29015669965137__section_9GaR4C .image-block__image {
  transition: transform 0.4s ease;
}
.image-block__image {
  transition: transform 0.4s ease;
}

#shopify-section-template--29015669965137__section_q6LPUx .image-block:hover .image-block__image, #shopify-section-template--29015669965137__section_9GaR4C .image-block:hover .image-block__image {
  /* transform: scale(1.1); zoom level */
  transform: scale(1.05);
}
.image-block:hover .image-block__image {
  /* transform: scale(1.1); zoom level */
  transform: scale(1.05);
}
.section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {
  padding: 0px;
}
.section.section--page-width.color-scheme-4 .spacing-style.text-block p strong {
  color: var(--primary-green-dark);
  font-family: 'Baskervville';
}
.section.section--page-width.color-scheme-4 .spacing-style.text-block.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  padding: 10px 0px;
  font-size: 17px;
}

#shopify-section-template--29015669965137__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column, #shopify-section-template--29219306996049__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) {
  background-color: #faf5ed;
  padding: 10px 10px 0px !important;
}
#shopify-section-template--29015669965137__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column a, , #shopify-section-template--29219306996049__section_9GaR4C #shopify-section-template--29015669965137__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column a{
  margin: 10px auto 20px;
  background-color: #2b2b2b;
  color: #f2ede5;
}
.spacing-style.text-block.text-block--AVlFSSTZzQlZhc1lXS__text_b7RRay.rte.text-block--align-left p {
  min-height: 110px !important;
}
.size-style.button.button--ATVBKOWZYdkMyK293Z__button_Ujtgt6:hover {
  color: #f2ede5 !important;
  background-color: var(--primary-green-dark) !important;
}
#shopify-section-template--29015669965137__section_QwXPr8 .border-style.custom-section-content, #shopify-section-template--29123371204945__section_HX7di7 .border-style.custom-section-content, #shopify-section-template--29220043915601__section_QwXPr8 .border-style.custom-section-content{
  background-color: var(--primary-green-dark) !important;
  padding: 30px 0px;
}
#shopify-section-template--29220043915601__section_QwXPr8 {
  padding: 0px;
}
.section.section--page-width.color-scheme-4 .size-style.button {
  margin: auto;
}
#shopify-section-template--29015669965137__section_4Nia3e .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29123371204945__section_4Nia3e .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  width: 80%;
  margin: auto;
}
#shopify-section-template--29015669965137__section_4Nia3e .group-block img {
  width: 100% !important;
}
#shopify-section-template--29015669965137__section_HYQDct {
  padding: 0px;
}
#shopify-section-template--29015669965137__section_HYQDct .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
  padding: 20% 0% 1% 70%;
}
#shopify-section-template--29015669965137__section_HYQDct .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column h3 {
  color: #fff;
}
#shopify-section-template--29015669965137__section_xmgN4G .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
  padding: 7% 65% 1% 0%;
}
#shopify-section-template--29015669965137__section_CkbxmG {
  padding: 0px;
}
#shopify-section-template--29015669965137__section_CkbxmG .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
  padding: 7% 69% 1% 0%;
}
#shopify-section-template--29015669965137__section_CkbxmG h3 strong {
  font-weight: normal;
}
#shopify-section-template--29015669965137__section_xmgN4G .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column h3, #shopify-section-template--29015669965137__section_CkbxmG h3 {
  color: #fff;
  text-align: left;
}

.spacing-style.text-block.text-block--ARmRRTXpyL25YYWRpZ__text_tbRFQD.h3.text-block--align-left.text-block--full-width p, .spacing-style.text-block.text-block--AVE8zS0NTTnZwbVlnM__text_nMfnGj.h3 p, .spacing-style.text-block.text-block--AcDJ3NVRFajA5ME5tL__text_GQnXLL.h3.text-block--align-left.text-block--full-width p{
  font-size: 24px;
  font-family: Baskervville;
  padding: 0px 0 10px;
}
#shopify-section-template--29015669965137__section_xmgN4G {
  padding: 0px;
}
#shopify-section-template--29015669965137__section_xmgN4G .background-image-container, #shopify-section-template--29015669965137__section_CkbxmG .background-image-container {
  left: -10px;
}
.spacing-style.text-block.text-block--AQ3V0dks1eVhmQ1VjM__text_NdeJ7b.h3 h3, .spacing-style.text-block.text-block--AWEhQSUF5OFpiVktHN__text_N3LcRT.h3 h3, .spacing-style.text-block.text-block--AN3ZOQktsSEcyZEdae__text_NdeJ7b.h3 h3 {
  color: #faf5ed;
  padding: 0px;
}

.spacing-style.text-block.text-block--AM0ZTNmd3U0R6YkdsN__text_9ftkY9.h2.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--AU3FZb1BrNDZCUzlER__text_xWdAAX.h2.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--ANnVtM3FHT3FHd3hoW__text_9ftkY9.h2.text-block--align-center.text-block--full-width p {
  width: 591px;
  line-height: 1.5;
}
#shopify-section-template--29015669965137__section_q6LPUx .spacing-style.text-block.rte p {
  min-height: 50px;
  width: 80% !important;
}.header__row.header__row--bottom.color-scheme-1.section.section--full-width-margin.section--page-width.mobile\:hidden {
  padding: 0px 0px;
}
.comparison-table {
  border-collapse: collapse;
  margin: 0 auto;
  min-width: fit-content;
  width: auto;
  font-family: 'Baskervville' !important;
}
.comparison-table th:nth-child(2) {
  width: 25% !important;
  text-align: end;
}
.table-wrapper img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(18%) saturate(800%) hue-rotate(130deg);
}
  .comparison-table th, 
  .comparison-table td {
    padding: 0px 10px;
    vertical-align: middle;
  }
  .comparison-table tbody tr td:nth-child(2) {
  text-align: end;
}
.comparison-table tbody tr td:nth-child(4) {
  text-align: left;
}
.trasupvscas {
  text-align: left !important;
  color: var(--primary-green-dark) !important;
}

 .comparison-table th {
  text-align: center;
  font-size: 32px;
  border-bottom: 0px solid #ccc;
  color: #2B2B2B;
  font-family: 'Baskervville' !important;
  font-weight: normal;
}

.comparison-table td {
  font-size: 24px;
  line-height: 1.5;
  border-bottom: 1px solid var(--primary-green-dark);
  font-family: 'Baskervville' !important;
  height: 120px;
}

  .comparison-table td:first-child,
  .comparison-table td:last-child {
    width: 10%;
  }

  .comparison-table td.center {
    width: 10%;
    text-align: center;
    font-weight: bold;
  }
.comparison-table td span {
  font-size: 18px;
  padding: 10px;
  text-transform: capitalize;
  color: var(--primary-green-dark);
}
  .trasupvscas {
    color: var(--primary-green-dark); /* green accent color */
  }
  .comparison-table th:first-child {
  color: transparent;
}
.comparison-table td.center span {
  font-size: 0px;
  border-right: 2px dashed var(--primary-green-dark);
  height: 30px;
  padding: 60px 0px;
}
.comparison-table.bathroom td.center span {
    font-size: 0px;
    border-right: 2px dashed var(--primary-green-dark);
    height: 180px;
    padding: 0px 42px !important;
    display: inherit;
}
.comparison-table.bathroom thead {
    top: 40px !important;
    position: relative;
}
div#shopify-section-template--28917387100497__product_recommendations_qggXJq img {
    object-fit: cover !important;
}
div#shopify-section-template--29220043915601__section_6wL8mi {
    padding-top: 0 !important;
}
.resource-list.resource-list--grid .resource-list__item {
	border: 1px solid #D3C6AE;
	padding: 15px;
}
.product-information__media .slideshow-control.slideshow-control--next.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent {
background-image: url(/cdn/shop/files/Button_Carousel-right.png?v=1772522821) !important;
background-repeat: no-repeat !important;
background-position: center !important;
background-size: contain;
background-color: transparent !important;
color: transparent !important;
}
.product-information__media .slideshow-control.slideshow-control--previous.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent.flip-x {
	background-image: url('/cdn/shop/files/Button_Carousel-left.png?v=1772522821');
background-repeat: no-repeat !important;
background-position: center !important;
background-size: contain;
background-color: transparent !important;
color: transparent !important;
transform: rotate(180deg);
}
.product-information__media .slideshow-control.slideshow-control--next.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent svg, .product-information__media .slideshow-control.slideshow-control--previous.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent.flip-x svg {
	width: 0 !important;
}
#shopify-section-template--29220043915601__custom_liquid_neHEpW .comparison-table td.center span {
  padding: 80px 0px;
}

  /* Optional: subtle hover effect */
  .comparison-table tbody tr:hover {
  background:rgba(242, 237, 229, 0.1);
}
.comparison-table thead tr {
  border-bottom: 42px solid transparent;
}
tbody tr:first-child td.center span {
  /* padding: 80px 0px;
  position: relative;
  top: -30px; */
}
.table-wrapper {
  padding-bottom: 70px;
}
tbody tr:last-child td {
  border: none !important;
}
  .comparison-table td div span{
    color: var(--primary-green-dark);
    padding-left: 10px !important;
  }
  .comparison-table td div {
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 80px;
}
.comparison-table td div img {
  width: auto;
}
.comparison-table th.center h6 {
  width: 50px;
  margin: auto;
  height: 50px;
  background-color: var(--primary-green-dark);
  border-radius: 50px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2ede5 !important;
  font-size: 20px;
  font-family: 'Baskervville' !important;
}
.comparison-table th:nth-child(3) {
  width: 10%;
}
.comparison-table th:nth-child(2), .comparison-table th:nth-child(4) {
  width: 30%;
}
.resource-list__carousel slideshow-slides {
  /* width: 100%;
  padding: 0px 0px;
  margin: auto; */
}
#shopify-section-template--29015669965137__section_CkbxmG .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column, #shopify-section-template--29015669965137__section_CkbxmG .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column h3 {
  color: #f2ede5;
  z-index: 9999;
}
#shopify-section-template--29015669965137__section_xmgN4G .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column, #shopify-section-template--29015669965137__section_xmgN4G .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column h3{
  color: #f2ede5;
}
#shopify-section-template--29015669965137__section_HYQDct .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column, #shopify-section-template--29015669965137__section_HYQDct .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column h3{
  color: #f2ede5;
}
slideshow-arrows {
  padding: 0px !important;
}
#shopify-section-template--28917386871121__section_4AnkxM {
  margin: auto !important;
  width: 100%;
  padding-top: 70px;
}
.section.section--full-width {
  padding: 0px 60px !important;
}

/* contemporary */
.slideshow-section.spacing-style.section.section--full-width.color-scheme-1.disable-section-top-offset {
  padding: 0px !important;
}
.gallery-thumbs{
  display:flex;
  flex-direction:column;
  gap:15px;
  max-height:700px;   /* set the height you want */
  overflow-y:auto;    /* enable vertical scroll */
  padding-right:5px;  /* optional for scrollbar space */
}

.gallery-thumbs img{
  width:100%;
  cursor:pointer;
  border-radius:6px;
}
.gallery-wrapper{
  display:grid;
  grid-template-columns:3fr 1fr;
  gap:20px;
  align-items:stretch;
}

.gallery-main{
  height:100%;
}

.gallery-main img{
  width:100%;
  height:100%;
  object-fit:cover; /* image fills without distortion */
  display:block;
}
#shopify-section-template--29030055510353__slideshow_VjRQcd .slideshow-section.spacing-style.section.section--page-width.color-scheme-1.disable-section-top-offset {
  padding: 0px;
}

#shopify-section-template--29030055510353__slideshow_VjRQcd {
  background-image: url('//casavera-3003.myshopify.com/cdn/shop/files/Top_Text.png?v=1772807203&width=3840');
  background-repeat: no-repeat;
  background-position: center;
}


#shopify-section-template--29030055510353__section_AVbfzb {
  background-color: #faf5ed;
}
#shopify-section-template--29030055510353__slideshow_VjRQcd .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 50%;
}
.spacing-style.text-block.text-block--AY3FyL0FKL3h3VXZUR__text_wTrgEN.h3.text-block--align-left.text-block--full-width h3 {
  color: #fff;
}
.spacing-style.text-block.text-block--Ad1JKS1BtbEFRdjFjR__text_UjXnwP.h3 p {
  font-size: 24px;
  font-family: 'Baskervville' !important;
}
.spacing-style.text-block.text-block--ASm1qSHpKSnV3K051N__text_xpx6b4.h3.text-block--align-left.text-block--full-width h3 strong {
  font-family: 'Baskervville' !important;
}
.spacing-style.text-block.h5 p {
  font-size: 24px;
  color: #777;
  margin-top: -10px;
}
.custom.custom-typography.custom-font-size.custom-color p {
  width: 80%;
  font-size: 24px;
  color: #2B2B2B;
}
.spacing-style.text-block.text-block--AdUl0TTI2UlpycmY1R__text_JHXCHQ.rte.text-block--align-center.text-block--full-width {
  width: 640px;
}
#shopify-section-template--29030055510353__kitchen_gallery_wLcCUX, #shopify-section-template--29030055510353__kitchen_gallery_Kc3Vzj, #shopify-section-template--29030055510353__kitchen_gallery_mbNg4B {
  background-color: #faf5ed;
}
/* .color-box-sec {
  background-color: #faf5ed;
} */

div#shopify-section-template--28917386871121__product_list_fa6P9H .contents.user-select-text .spacing-style.text-block.rte.text-block--align-left p {
  width: 68% !important;
  font-weight: inherit;
}
header li.menu-list__list-item a:hover span.menu-list__link-title {
  border-bottom: 2px solid var(--primary-green-dark) !important;
}
header .menu-list__list-item span {
  padding: 0px;
}
.mega-menu__grid {
  background-color: #fff;
  padding: 10px 0px 20px;
}
.mega-menu__list.list-unstyled {
  /* background-image: url('/cdn/shop/files/Categories_Pictures_3.png?v=1772705146'); */
  background-repeat: no-repeat;
  background-position: right;
  background-color: #fff;
}
.mega-menu__link {
  padding: 0px !important;
}

.mega-menu__grid {
  /* 1125 change into 1025*/
  width: 1165px !important;
  margin: auto;
  padding: 10px 20px 20px;
}
.section.section--page-width.color-scheme-3 .spacing-style.text-block.h4 p {
  color: var(--primary-green-dark);
}
/* .overflow-menu {
  --color-scheme-top-row: inherit !important;
}
 .color-scheme-1 {
  --color-background: rgb(255 255 255 / 1.0) !important;
 } */
 #header-component {
  --color-scheme-top-row: inherite !important;
}
#shopify-section-template--29030055510353__section_ffE84D .size-style.button,
#shopify-section-template--29030055510353__section_9N8Gia .size-style.button,
#shopify-section-template--29030055510353__section_VFa4mD .size-style.button,
#shopify-section-template--29030055510353__section_CYBfhU .size-style.button,
#shopify-section-template--29030055510353__section_rtYV3Q .size-style.button,
#shopify-section-template--29030055510353__section_AVbfzb .size-style.button {
margin: 0px;
background-color: #2B2B2B !important;
  color: #f2ede5 !important;
}
#shopify-section-template--29030055510353__section_ffE84D .size-style.button:hover,
#shopify-section-template--29030055510353__section_9N8Gia .size-style.button:hover,
#shopify-section-template--29030055510353__section_VFa4mD .size-style.button:hover,
#shopify-section-template--29030055510353__section_CYBfhU .size-style.button:hover,
#shopify-section-template--29030055510353__section_rtYV3Q .size-style.button:hover,
#shopify-section-template--29030055510353__section_AVbfzb .size-style.button:hover {
  background-color: var(--primary-green-dark) !important;
  color: #f2ede5 !important;
}
*{
  font-family: 'Futura'
}
#shopify-section-template--28917387002193__form {
  padding: 0px !important;
}

#product-recommendations-template--28917387100497__product_recommendations_qggXJq {
  padding: 40px 0px;
}
.add-to-cart-button {
  background-color: #faf5ed;
  color: #2b2b2b !important;
  border: 1px solid #2B2B2B;
  border-radius: 3px !important;
}
.add-to-cart-button:hover {
  background-color: var(--primary-green-dark);
  color: #f2ede5 !important;
  border: 1px solid var(--primary-green-dark);
}
.product-information.section.section--page-width.spacing-style.color-scheme-1.relative {
  padding: 40px 0px 0px;
}

.gallery-main {
  height: inherit !important;
}
.kitchen-gallery {
  width: 90rem !important;
  margin: auto;
}
#shopify-pc__banner {
  width: min-content !important;
}
/* Main layout */
/* .pf-36_{
  display:flex !important;
  gap:20px !important;
  align-items:flex-start !important;
} */
.img-box-whole{
  display:flex !important;
  gap:30px !important;
  align-items:flex-start !important;
}
.img-box-left{
  width:70% !important;
  position:sticky !important;
  top:3px !important;
  higher: 330px !important;
}

img-box-left img{
  width:100% !important;
  height:700px !important;
  object-fit:cover !important;
}
/* LEFT BIG IMAGE */
/* .pf-35_{
  width:70% !important;
  position:sticky !important;
  top:40px !important;
} */

/* .pf-35_ img{
  width:100% !important;
  height:700px !important;
  object-fit:cover !important;
} */
.img-box-right{
  width:30% !important;
  height:1200px;
  overflow-y:auto !important;
  display:flex !important;
  flex-direction:column !important;
  gap:30px !important;
}
/* RIGHT SCROLL GALLERY */
/* .pf-34_{
  width:30% !important;
  height:700pxv
  overflow-y:auto !important;
  display:flex !important;
  flex-direction:column !important;
  gap:12px !important;
} */

/* gallery images */
/* .pf-34_ img{
  width:100% !important;
  height:200px !important;
  object-fit:cover !important;
} */
.img-box-right img{
  width:100% !important;
  height:200px !important;
  object-fit:cover !important;
}
#shopify-section-template--28917386871121__product_list_fa6P9H slideshow-container {
  width: 100% !important;
}

#shopify-section-template--28917386871121__collection_list_q69iNL slideshow-container, #shopify-section-template--28917386871121__featured_blog_posts_dL9JeQ slideshow-container {
  width: 1430px !important;
  margin: auto;
}
#shopify-section-template--28917386871121__collection_list_q69iNL slideshow-slides, #shopify-section-template--28917386871121__featured_blog_posts_dL9JeQ slideshow-slides {
  padding: 0px !important;
}
.spacing-style.text-block.text-block--AWncyeTZ6ckdwK0lDc__text_NmUDaM.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: 100px;
}
.spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: 100px;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh slideshow-container .spacing-style.slide__content.color-scheme-6.background-transparent {
  width: 1440px;
  margin: auto;
  padding: 20px 30px;
}
.menu-list__submenu.color-scheme-matches-parent, .menu-list__submenu-inner, .overflow-menu::part(overflow-list), .mega-menu.section.section--full-width-margin.section--page-width {
  box-shadow: 0px 0px #0000 !important;
  padding: 0px;
}
.spacing-style.text-block.text-block--ANk85YTZrNGtCVEF6Z__text_nyy4fb.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: 0px !important;
}
#shopify-section-template--29015669965137__section_4Nia3e .rte p {
  width: 85%;
  padding-top: 10px;
}
.spacing-style.text-block.text-block--ATjlWUlBhbkg3YkV5V__text_4mkjdM.rte.text-block--align-center p {
  width: 400px !important;
}
#shopify-section-template--29015669965137__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) {
  border: 2px solid #D3C6AE;
}
.banner-inner .pf-flex-section{
  position: relative;
  padding-bottom: 0px;
}
.banner-inner .pf-flex-section::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-color: #2b2b2bcf;
  top: 0px;
  z-index: 1;
}
.banner-inner{
  padding: 0px !important;
}
.banner-flex-box{
  z-index: 2;
}
#shopify-section-template--29015669965137__slideshow_VjRQcd .rte p { 
    width: 620px;
 }

 .mega-menu__column .wrap-text {
  width: max-content;
}

#submenu-6 .wrap-text {
  width: fit-content !important;
}
#shopify-section-template--28917386871121__section_jrj9tk .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding: 8% 29%;
}
.spacing-style.text-block.text-block--AS2N5MTZWdGhzVXNlV__text_kTahUd.h3.text-block--align-center.text-block--full-width h3 {
  color: #fff;
}
.p-color-box .pf-flex-section {
  background-color: #faf5ed;
  padding: 40px 30px;
}
 .white-bg-sec .pf-flex-section {
  padding: 40px 30px;
}
.p-color-box{
  background-color: transparent !important;
}

.resource-list.resource-list--grid {
  padding-top: 20px;
}
.spacing-style.text-block.text-block--AYStLajQ5STdLa1B5S__text_X4UqnW.rte.text-block--align-center.text-block--full-width {
  width: 61%;
}

#shopify-section-template--28917386871121__section_qE7d97 {
  padding: 70px 0px;
}

.header__underlay-open::after{
  box-shadow: none !important;
}



/* LAYOUT */

.casavera-wrapper{
display:flex;
gap:25px;
margin: auto;
  padding: 20px 0px;
}

/* LEFT IMAGE */

.casavera-preview{
flex:1;
}

.casavera-preview img{
width:100%;
height:600px;
object-fit:cover;
border-radius: 0px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* RIGHT GALLERY */

.casavera-gallery{
width:220px;
position:relative;
}

.casavera-thumbs{
height:600px;
overflow-y:auto;
scroll-behavior:smooth;
padding-right:5px;
}

/* HIDE SCROLLBAR (Mac style) */

.casavera-thumbs::-webkit-scrollbar{
width:0px;
}

.casavera-thumbs{
scrollbar-width:none;
}

/* THUMBNAILS */

.casavera-thumbs img{
width:100%;
height:120px;
object-fit:cover;
margin-bottom:10px;
border-radius: 0px;
cursor:pointer;
transition:.25s;
}

/* .casavera-thumbs img:hover{
transform: scale(1.15);
} */

/* ARROW BUTTON */

/* .arrow{
position:absolute;
bottom:10px;
left:50%;
transform:translateX(-50%);
width:44px;
height:44px;
border-radius:50%;
border:2px solid #333;
background:#faf5ed;
font-size:20px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
transition:.25s;
} */
.arrow {
	position: absolute;
	bottom: 0px;
	border: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .25s;
	background-image: url(/cdn/shop/files/Button_Carousel-right.png?v=1772522821) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: contain;
	transform: rotate(90deg);
	background-color: transparent !important;
	color: transparent !important;
	width: 50px;
	height: 50px;
	left: 0px;
	right: 0px;
	margin: auto;
}

.arrow:hover{
  color: transparent;
  background-image: url(/cdn/shop/files/State_Hover.png?v=1772709089) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain;
  transform: rotate(90deg);
  background-color: transparent !important;
}

.casavera-thumbs .thumb img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .4s ease;
}
.thumb{
width:100%;
height:120px;
overflow:hidden;   
margin-bottom:10px;
cursor:pointer;
}

.thumb img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .4s ease;
}

/* ZOOM EFFECT */
.thumb:hover img{
transform:scale(1.2);
}



#shopify-section-template--29123371204945__slideshow_VjRQcd .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
	padding: 90px 30px 30px;
}

.spacing-style.text-block.text-block--AYUp5WFZ2MG14bHU0M__product_title_j7qXTx-2.rte {
  width: 82% !important;
}
/* #shopify-section-template--29123371204945__slideshow_VjRQcd .group-block-content {
	
	width: 50%;
} */

#shopify-section-template--29123371204945__slideshow_VjRQcd .size-style.button.button--AYUpyODR2UjJVWHJsZ__button_Li3WYF {
	border: 1px solid #faf5ed !important;
	background-color: #2b2b2b !important;
	color: #faf5ed;
}

#shopify-section-template--29123371204945__slideshow_VjRQcd  .size-style.button.button--AYUpyODR2UjJVWHJsZ__button_Li3WYF:hover {
	background-color: var(--primary-green-dark) !important;
	color: #f2ede5 !important;
	border: 1px solid #faf5ed !important;
}

#shopify-section-template--29123371204945__section_4Nia3e .section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {
		line-height: 1.0!important;
}

#shopify-section-template--29123371204945__section_9GaR4C ul {
	margin: 0px!important;
}
#shopify-section-template--29123371204945__section_q6LPUx .size-style.button {
	text-align: left;
	margin: 0px !important;
}
#shopify-section-template--29123371204945__section_9GaR4C p {
	min-height: auto !important;
}
.section.section--page-width.color-scheme-58084d4c-a86e-4d0a-855e-a0966e5043f7 .background-image-container:after{
  display: none;
}

#shopify-section-template--29123371204945__section_PYRH8E .border-style.custom-section-content {
	background-color: #faf5ed;
	padding: 20px;
}


#shopify-section-template--29123371204945__section_q6LPUx .spacing-style.text-block.text-block--AY3MxZXVnVU5xRzFZT__text_CWjU8V.rte.text-block--align-left.text-block--full-width {
	min-height: 110px;
}
/* 

#shopify-section-template--29129494430033__slideshow_VjRQcd .group-block-content {
	width: 50%;
} */

#shopify-section-template--29129494430033__section_ViC4bn .border-style.custom-section-content, #shopify-section-template--29135167750481__section_T7cJwd  .border-style.custom-section-content,#shopify-section-template--29129494430033__section_gz8LBh .border-style.custom-section-content, #shopify-section-template--29129494430033__section_jMMFgU  .border-style.custom-section-content{
	background-color: #faf5ed;
	padding: 30px;
}
#shopify-section-template--29129494430033__section_jMMFgU .border-style.custom-section-content {
  padding: 20px 30px 60px;
  margin-bottom: 40px;
}
#shopify-section-template--29129494430033__section_ViC4bn {
	padding: 0px 0px;
}
#shopify-section-template--29129494430033__slideshow_VjRQcd .size-style.button.button--AY0FZRFN3MStQN2gva__button_Li3WYF {
	border: 1px solid #faf5ed !important;
	background-color: #2b2b2b !important;
	color: #faf5ed;
}

#shopify-section-template--29129494430033__slideshow_VjRQcd .size-style.button.button--AY0FZRFN3MStQN2gva__button_Li3WYF:hover {
	background-color: var(--primary-green-dark) !important;
	color: #f2ede5 !important;
	border: 1px solid #faf5ed !important;
}

.spacing-style.text-block.text-block--AUnhLT1BxY0VVbFJDU__text_xpx6b4.h3.text-block--align-center.text-block--full-width h3 {
	color: #2b2b2b;
	line-height: 1.4;
}
.spacing-style.text-block.text-block--AbTUxUWxCY240d2grU__text_GQnXLL.h3.text-block--align-center.text-block--full-width p {
	color: #2b2b2b;
}
#shopify-section-template--29129494430033__section_CkbxmG .border-style.custom-section-content {

	padding: 30px 10px 40px 10px;
}
#shopify-section-template--29129494430033__section_ViC4bn ul li {
	text-align: left;
}

 
#shopify-section-template--29129494430033__section_ViC4bn ul {
	margin: 0px !important;
}

#shopify-section-template--29129494430033__section_9GaR4C ul {
	margin: 0px !important;
	padding: 0px 20px !important;
}

#shopify-section-template--29129494430033__section_9GaR4C ul li {
list-style-position:inside;
}

#shopify-section-template--29129494430033__section_9GaR4C p {

	min-height: auto !important;
}
#shopify-section-template--29129494430033__section_9GaR4C {
	padding: 10px 0px;
}


#shopify-section-template--29129494430033__section_cJmKL4 ul {
	margin: 0px;
}


.text-block ul {
	margin: 0px;
}

#shopify-section-template--29129494430033__section_gkTYQ8 .text-block p {
	min-height: auto !important;
}


#shopify-section-template--29129494430033__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	background-color: #faf5ed;
	padding: 20px;
}


#shopify-section-template--29129494430033__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	background-color: #faf5ed;
	padding: 20px;
}
#shopify-section-template--29129494430033__section_cJmKL4 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	padding: 20px;
}

#shopify-section-template--29129494430033__section_gkTYQ8 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	background-color: #faf5ed;
	padding: 20px;
}


div#shopify-section-template--29123371204945__section_q6LPUx a.size-style.button {
    margin: 10px auto !important;
}


#shopify-section-template--29129494430033__section_Ecbfa3 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {

	padding: 20px !important;
}


#shopify-section-template--29129494430033__section_Ecbfa3 p {
	min-height: auto !important;
}
#shopify-section-template--29129494430033__section_Ecbfa3 ul {
	margin: 0px !important;
	
}


#shopify-section-template--29129494430033__section_wBfdkH .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	background-color: #faf5ed;
	padding: 20px;
}
#shopify-section-template--29135167750481__section_QLmf68 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {

	background-color: #faf5ed;

}  


#shopify-section-template--29129494430033__section_wBfdkH p {
	min-height: auto !important;
}

#shopify-section-template--29129494430033__section_wBfdkH ul {
	margin: 0px !important;
	
}

#shopify-section-template--29129494430033__section_QwXPr8 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {
	background-color: var(--primary-green-dark) !important;
	padding: 20px 10px 30px 10px;
}
#shopify-section-template--29129494430033__section_QwXPr8 h3 {
	color: #fff !important;
}

#shopify-section-template--29129494430033__section_QwXPr8 ul li {
	font-size: 18px !important;
	line-height: 1.7;
}
#shopify-section-template--29129494430033__section_QwXPr8 ul{
  list-style-position:inside;
  margin:0px;
}

#shopify-section-template--29129494430033__section_QwXPr8 .spacing-style.text-block p {
	font-size: 17px;
	font-family: Futura;
	line-height: 1.7;
}
#shopify-section-template--29135167750481__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent {
	padding: 120px 30px !important;
}

#shopify-section-template--29135167750481__slideshow_VjRQcd .group-block-content {
	
	width: 50%;
}


#shopify-section-template--29135167750481__slideshow_VjRQcd .size-style.button {
	border: 1px solid #faf5ed !important;
	background-color: #2b2b2b !important;
	color: #faf5ed;
}

#shopify-section-template--29135167750481__slideshow_VjRQcd .size-style.button:hover {
	background-color: var(--primary-green-dark) !important;
	color: #f2ede5 !important;
	border: 1px solid #faf5ed !important;
}

#shopify-section-template--29135167750481__section_ViC4bn .border-style.custom-section-content {
	background-color: #faf5ed;
	padding: 20px;
}

#shopify-section-template--29135167750481__section_CkbxmG .border-style.custom-section-content {
	background-color: var(--primary-green-dark);
	padding: 30px 10px 40px;
}

#shopify-section-template--29135167750481__section_CkbxmG  h3 {
	color: #fff;
	line-height: 1.4;
}

 #shopify-section-template--29135167750481__section_cJmKL4 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29135167750481__section_gkTYQ8 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	background-color: #faf5ed;
	padding: 10px;
}

#shopify-section-template--29135167750481__section_Ecbfa3 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column{
  background-color: #faf5ed;
	padding: 10px;
}

#shopify-section-template--29135167750481__section_wBfdkH .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column{
  background-color: #faf5ed;
	padding: 10px;
}

#shopify-section-template--29135167750481__section_QwXPr8 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {
	background-color: var(--primary-green-dark) !important;
	padding: 20px 10px 30px;
}


#shopify-section-template--29135167750481__section_QwXPr8 h3 {
	color: #fff !important;
}


#shopify-section-template--29135167750481__section_cJmKL4 .border-style.custom-section-content {
	background-color: #faf5ed;
}
#shopify-section-template--29135167750481__section_cJmKL4 .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style {
	padding-bottom: 10px;
  --padding-block-start: 0px !important;
}
#shopify-section-template--29135167750481__section_cJmKL4  .spacing-style.text-block.text-block--AbkJ5TFFOSEhvSGRiU__text_KXMwb9.rte.text-block--align-center.text-block--full-width {
	padding-bottom: 30px;
}

#shopify-section-template--29135167750481__section_bzqAG6 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column{
	background-color: #faf5ed;
	padding: 10px;
}
#shopify-section-template--29135167750481__section_bzqAG6 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {
	background-color: #faf5ed;
  
}
#shopify-section-template--29135167750481__section_bzqAG6 .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style {
	padding-bottom: 10px;
  --padding-block-start: 10px !important;
}


#shopify-section-template--29135227781457__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 50%;
}

#shopify-section-template--29135227781457__section_ViC4bn .border-style.custom-section-content {

  background-color: #faf5ed;

  padding: 30px;

}
#shopify-section-template--29135227781457__section_CkbxmG .border-style.spacing-style.size-style {

  background-color: var(--primary-green-dark);

  padding: 30px 10px 40px;

  margin-top: -30px;

  color: #fff !important;

}
.spacing-style.text-block.text-block--ANFN0QWhvdk9RT0t2S__text_xpx6b4.h3.text-block--align-center.text-block--full-width h3 {

  color: #fff;

}
#shopify-section-template--29135227781457__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {

  padding: 30px;

}
#shopify-section-template--29135227781457__section_cJmKL4  .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {

  background-color: #faf5ed;

  padding: 30px;

}
 
#shopify-section-template--29135227781457__section_QwXPr8 .border-style.custom-section-content {

  background-color: var(--primary-green-dark) !important;

  padding: 20px 10px 30px;

}
 
.spacing-style.text-block.text-block--AQVgwSVdUOTE5NForM__text_NdeJ7b.h3 h3 {

  color: #fff;

}
 


#shopify-section-template--29135167750481__section_zyWcf6 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	background-color: #faf5ed;
	padding: 10px;
}

#shopify-section-template--29135167750481__section_zyWcf6 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column{
  background-color: #faf5ed;
 
}

#shopify-section-template--29135167750481__section_zyWcf6 .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style {
	padding-bottom: 10px;
  --padding-block-start: 0px !important;
}


#shopify-section-template--29135167750481__section_9GaR4C h3 {
	font-size: 44px;
	line-height: 1.4;
}
#shopify-section-template--29135167750481__section_cJmKL4 h3{
  font-size: 44px;
	line-height: 1.4;
}

#shopify-section-template--29135167750481__section_JBRUtP h3{
    font-size: 44px;
	line-height: 1.4;
}
#shopify-section-template--29135167750481__section_bzqAG6 h3{
   font-size: 44px;
	line-height: 1.4;
}
#shopify-section-template--29135167750481__section_dYzrx4 h3{
  font-size: 44px;
	line-height: 1.4;
}

#shopify-section-template--29135167750481__section_zyWcf6 h3{
  font-size: 44px;
	line-height: 1.4;
}
/* light page */

#shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content {
	width: 50%;	
}
#shopify-section-template--29138975883601__slideshow_VjRQcd {
	margin-bottom: 40px;
}
#shopify-section-template--29138975883601__section_9GaR4C .section.section--page-width.color-scheme-4 .size-style.button {
	margin: 10px 0px;
}

#shopify-section-template--29138975883601__section_HYQDct .group-block-content {
	width: 50%;
	padding: 3% 2%;
}
#shopify-section-template--29138975883601__section_HYQDct h3{
	color:#fff;
}
#shopify-section-template--29123371204945__section_kz36Hm .group-block-content {
	padding: 3% 20%;
}
.spacing-style.text-block.text-block--ATHkxZDRaWlQxMlBtZ__text_iFYy4Q {
	margin-left: 30px;
}
.text-block--AZk1WL0xmTjdUbVNuV__text_YhWNr7 {
	margin-left: 30px;
}

.spacing-style.text-block.text-block--AT2lvRUM5dDRRS2JIM__text_eYRL3P.h3.text-block--align-left.text-block--full-width {
	z-index: 2;
}
.spacing-style.text-block.text-block--AMlpDMnFkZnNmUzV1c__text_nMfnGj.paragraph.text-block--align-left.text-block--full-width.rte p,.spacing-style.text-block.text-block--AMDhESmM3aDltcTA1R__text_REyNgC.rte.text-block--align-left.text-block--full-width {
	z-index: 2 !important;
	color: #fff !important;
}
.size-style.button.button--AWitvNm93cFQ2enBVV__button_Li3WYF {

	border: 1px solid #faf5ed !important;

	background-color: #2b2b2b !important;

	color: #faf5ed;

}
.size-style.button.button--AWitvNm93cFQ2enBVV__button_Li3WYF:hover {

	background-color: var(--primary-green-dark) !important;

	color: #f2ede5 !important;

	border: 1px solid var(--primary-green-dark);

}
#shopify-section-template--29138975883601__section_qyAfK8 .group-block-content::after, #shopify-section-template--29123371204945__section_kz36Hm .group-block-content::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-color: #2b2b2bcf;
	top: 0;
	z-index: 1;
}
/* #shopify-section-template--29123371204945__section_kz36Hm .group-block-content::after{

	left: auto !important;
	right: 0 !important;
} */
#shopify-section-template--29138975883601__section_qyAfK8 .group-block-content, #shopify-section-template--29123371204945__section_kz36Hm .group-block-content{
	padding: 6% 55% 1% 3%;
  height: 480px;
}
#shopify-section-template--29138975883601__section_qyAfK8 .group-block-content *, #shopify-section-template--29123371204945__section_kz36Hm .group-block-content * {
	color: #fff;
	z-index: 2;
}
div#shopify-section-template--29138975883601__slideshow_VjRQcd .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
    padding-bottom: 30px;
}
 
/* END LIGHT page */
/* Door page CSS Start */
#shopify-section-template--29150848975185__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #2b2b2bcf;
  top: 0;
  z-index: 1;
}
#shopify-section-template--29150848975185__slideshow_VjRQcd .group-block-content{
	 width: 48%;
}
#shopify-section-template--29150848975185__section_gyw6nV .group-block{
	background: var(--primary-green-dark);
	padding: 10px;
}
#shopify-section-template--29150848975185__section_gyw6nV .group-block .spacing-style.text-block.h4 p, #shopify-section-template--29150848975185__section_gyw6nV .group-block .spacing-style.text-block.h4 p strong {
	color: #fff !important;
}
#shopify-section-template--29150848975185__section_AqkiCh .group-block-content {
	z-index: 2;
	width: 100%;
	padding: 20% 1% 1% 70%;
}
#shopify-section-template--29150848975185__section_AqkiCh .group-block-content *{
  color:#fff;
  z-index: 2;
}
#shopify-section-template--29150848975185__section_AqkiCh .group-block-content::after {
	content: "";
	position: absolute;
	left: auto;
	right: 0;
	width: 35%;
	height: 100%;
	background-color: #2b2b2bcf;
	top: 0;
	z-index: 1;
}
#shopify-section-template--29150848975185__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
    z-index: 2;
}
.spacing-style.text-block.text-block--AcEQ4WmhWVEE2VWI5d__text_UjXnwP.h3 p,.spacing-style.text-block.text-block--AWURhTFBiNXhqU2s3e__text_khpbBK.h3.text-block--align-left.text-block--full-width p {
	font-size: 24px;
	font-family: Baskervville;
	padding: 10px 0;
}
/* Door page CSS End */

/*Gallery Section css */
.gleryimgsec {
  width: 1200px;
}
/*End */

#shopify-section-template--29135167750481__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.text-block p strong {
	color: #777;
	font-family: Baskervville;
	font-size: 24px;
	font-weight: 400;
}
 
#shopify-section-template--29135167750481__section_CkbxmG h3 {
	color: #000;
	line-height: 1.4;
}
 
#shopify-section-template--29135167750481__section_CkbxmG .spacing-style.text-block p {
	font-size: 24px;
	font-family: Futura;
	color:#2b2b2b;
  width:75%;
}
 
#shopify-section-template--29135167750481__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.text-block p strong{
	color: #777;
	font-family: Baskervville;
	font-size: 24px;
	font-weight: 400;
 
}


 
.spacing-style.text-block.text-block--ATWtyYVgzQk04OUdad__text_DJFgVq.rte.text-block--align-center p strong{
	color: #777;
	font-family: Baskervville;
	font-size: 24px;
	font-weight: 400;
 
}
 
.spacing-style.text-block.text-block--ASVlOTldNcEQ0ZGt5V__text_R9qnnC.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	color: #2b2b2b;
	font-family: Futura;
  width:75%
}

.spacing-style.text-block.text-block--ARmdmU2ViWi9meGNhc__text_gpb7Q6.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
  width: 77%;
}
.spacing-style.text-block.text-block--AUUpSbm12MUNkSEU3d__text_7Ca3yE.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
}
#shopify-section-template--29135167750481__section_CkbxmG .border-style.custom-section-content {
	background-color: #fff !important;
	padding: 30px 10px 40px;
}
 
#shopify-section-template--29135167750481__section_CkbxmG .border-style.custom-section-content {
	background-color: #fff !important;
	padding: 30px 10px 0px 40px;
}

.spacing-style.text-block.text-block--AakJJMmp5Y1dJTHplN__text_NmUDaM.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
  width:75%;
}
 
.spacing-style.text-block.text-block--AbkJ5TFFOSEhvSGRiU__text_KXMwb9.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
   width:75%;
}

#shopify-section-template--29135167750481__section_cJmKL4 .spacing-style.text-block.text-block--AbkJ5TFFOSEhvSGRiU__text_KXMwb9.rte.text-block--align-center.text-block--full-width {
	padding-bottom: 0px;
}
 
.spacing-style.text-block.text-block--AanY3TDk0djVaTlg2L__text_3G7n7J.rte.text-block--align-center.text-block--full-width p {
	width: 75%;
	font-size: 24px;
}
.spacing-style.text-block.text-block--AT3dqTUVpa0d5S1lFb__text_WkqUQB.rte.text-block--align-center p strong {
	font-size: 24px;
	color:#777;
  font-weight:400;
}
 
.spacing-style.text-block.text-block--ASG5pR3BZYktjYkdlM__text_HTDgMz.rte.text-block--align-center p strong {
font-size: 24px;
	color:#777;
  font-weight:400;
}
.spacing-style.text-block.text-block--Abm9JT2JHOWlZalhTa__text_xzLPG7.rte.text-block--align-center p strong {
  font-size: 24px;
	color:#777;
  font-weight:400;
}

.spacing-style.text-block.text-block--Ac2hzeVQrT3NPd08xY__text_eYPYa4.rte.text-block--align-center p strong {
   font-size: 24px;
	color:#777;
  font-weight:400;
}

.spacing-style.text-block.text-block--AMldTc0FpVTF3ckx0c__text_XzGRqr.rte.text-block--align-center p strong {
  font-size: 24px;
	color:#777;
  font-weight:400;
}
#shopify-section-template--29135167750481__section_EUnjpL h3 {
	font-size: 44px;
	line-height: 1.4;
}

.spacing-style.text-block.text-block--AMjRsb0dTbEJZWS9iV__text_A97g8Y.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}
.spacing-style.text-block.text-block--AbkJ5TFFOSEhvSGRiU__text_KXMwb9.rte.text-block--align-center.text-block--full-width p {
  font-size: 24px;
  width: 75%;
}
.spacing-style.text-block.text-block--AbDBkWVllQ1ozTXhDe__text_JNxTaA.h4.text-block--align-center.text-block--full-width p {
	color: #2b2b2b;
}
 
.spacing-style.text-block.text-block--Ac2hzeVQrT3NPd08xY__text_eYPYa4.rte.text-block--align-center p {
font-size: 24px;
	color:#777;
}
 
 
.spacing-style.text-block.text-block--AWjhpN2tUVkVNcEpnc__text_EEzVKJ.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}
 
.spacing-style.text-block.text-block--AbjhTbG9HRnVsTDlEa__text_Gbbnwx.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}
 
.spacing-style.text-block.text-block--AS21lZ3djenJzTTFqY__text_eT8Gkj.rte.text-block--align-center.text-block--full-width p strong {
font-size: 19px;
	color:#777;
  font-weight:400;
}
 
.spacing-style.text-block.text-block--AdzV4ZlhwTnRLTlRLd__text_tKUdGG.rte.text-block--align-center.text-block--full-width p strong {
font-size: 19px;
	color:#777;
  font-weight:400;
}
 

.spacing-style.text-block.text-block--ASE90cllkV2RRQTJuQ__text_qTxFQi.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}

.spacing-style.text-block.text-block--ANmJWbC8vUkEycE8rK__text_NyJRyL.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}

.spacing-style.text-block.text-block--AOW9oSC9aa2RZS2wyS__text_BetQPi.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}
#shopify-section-template--29138975883601__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block__image, #shopify-section-template--29015669965137__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block__image, #shopify-section-template--29123371204945__section_9GaR4C .image-block__image, #shopify-section-template--29123371204945__section_q6LPUx .image-block__image, #shopify-section-template--29123371204945__section_q6LPUx .image-block__image, div#shopify-section-template--29150234968401__section_9GaR4C .image-block__image, #shopify-section-template--29123371204945__section_JMJc8C .image-block__image, #shopify-section-template--29208321163601__section_9GaR4C .image-block__image, #shopify-section-template--29219306996049__section_9GaR4C .image-block__image, .section-background.color-scheme-4 .image-block__image, #shopify-section-template--29220043915601__section_9GaR4C .section.section--page-width.color-scheme-4 .image-block__image, #shopify-section-template--29220043915601__section_DrzARE .image-block__image{
  height: 300px !important;
}
/* .section.section--page-width.color-scheme-4 .image-block__image {
  height: 300px;
} */
#shopify-section-template--29220043915601__section_9GaR4C .section.section--page-width.color-scheme-4 .image-block__image {
  object-fit: cover !important;
}
 #shopify-section-template--29220043915601__section_DrzARE.image-block__image{
  object-fit: fill !important;
 }
.spacing-style.text-block.text-block--ASkMrUUNSOVFqRDNkc__text_CdWcHy.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}


.spacing-style.text-block.text-block--ATlJPSEFpeHRvcmo1U__text_4WhbdB.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}

.spacing-style.text-block.text-block--AZnFSdExHcHJKRHpkU__text_7GGkqx.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}
.spacing-style.text-block.text-block--AQ05BVENBd0lPcjlWW__text_6WFxtC.rte.text-block--align-center h3 {
	font-size: 44px;
	line-height: 1.4;
}

.spacing-style.text-block.text-block--AbHNoeXRSeWVabjE4R__text_WFxP3Y.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}
.spacing-style.text-block.text-block--AcEszMjJWZUZzeUhOW__text_jnphyW.rte.text-block--align-center p strong {
	font-size: 24px;
  color: #777;
  font-weight: 400;
}

.spacing-style.text-block.text-block--AUkJOQ3daTEpSU1c5Y__text_dtj9jK.rte.text-block--align-center.text-block--full-width p {
	font-size: 24px;
	width: 75%;
}


/*Lighting page CSS Start */
#shopify-section-template--29138975883601__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-color: #2b2b2bcf;
	top: 0;
	z-index: 1;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd  .group-block-content {
	z-index: 2;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content {	
	padding-right: 30px;
}
#shopify-section-template--29138975883601__section_HYQDct .group-block-content::after, #shopify-section-template--29123371204945__section_yJtGkT .group-block-content::after, #shopify-section-template--29220043915601__section_c6EqpE .group-block-content::after, #shopify-section-template--29710972551505__section_CUgGRh .group-block-content::after{
	content: "";
	position: absolute;
	left: auto;
	right: 0;
	width: 35%;
	height: 100%;
	background-color: #2b2b2bcf;
	top: 0;
	z-index: 1;
}

#shopify-section-template--29138975883601__section_HYQDct .group-block-content, #shopify-section-template--29123371204945__section_yJtGkT .group-block-content, #shopify-section-template--29220043915601__section_c6EqpE .group-block-content, #shopify-section-template--29710972551505__section_CUgGRh .group-block-content{
  z-index: 2;
  width: 100%;
  height: 480px;
  padding: 0% 0% 3% 68%;
}

.spacing-style.text-block.text-block--ANnBGc2dmUXl6aHJ6Z__text_rT9p4A.h4.text-block--align-center.text-block--full-width p {
	color: #2b2b2b;
}
.spacing-style.text-block.text-block--AMlpDMnFkZnNmUzV1c__text_nMfnGj.h3.text-block--align-left.text-block--full-width p {
  color: #fff;
  z-index: 2;
}

/* .template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block.rte p {
	font-size: 24px;
	color: #2b2b2b;
	width: 75%;
} */
/* .template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block.h3 p {
	font-size: 24px;
	color: #2b2b2b;
	width: 75%;
} */

.template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block.rte h3 {
	font-size: 42px;
	color: #2b2b2b;
	
}
#shopify-section-sections--28917387297105__section_yVctYz p {
	width: 100% !important;
}
.template-page\.melamine-wardrobes.page-163204104529 .section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {
	color: #2b2b2b;
font-size: 30px
}

.template-page\.melamine-wardrobes.page-163204104529 .section.section--page-width.color-scheme-4 .spacing-style.text-block.rte p strong {
	color: #777;
  font-size: 20px;
	font-family: Baskervville;
}
#shopify-section-template--29123371204945__section_yJtGkT p, #shopify-section-template--29123371204945__section_yJtGkT h3, #shopify-section-template--29220043915601__section_c6EqpE h3, #shopify-section-template--29220043915601__section_c6EqpE p, #shopify-section-template--29710972551505__section_CUgGRh h3, #shopify-section-template--29710972551505__section_CUgGRh p {
  color: #fff;
  z-index: 2;
}

#shopify-section-template--29129494430033__section_4Nia3e .spacing-style.text-block.rte p {
	width: 100% !important;
	 font-size: 18px!important; 
}

.template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block p strong {
	
	font-family: Baskervville;
	font-size: 24px;
	color: #777;
	font-weight: 400;

}
#shopify-section-template--29129494430033__slideshow_VjRQcd .spacing-style.text-block p {
	color: #fff !important;
  font-size: 17px;
  width: 100%;
}
#shopify-section-template--29129494430033__slideshow_VjRQcd .spacing-style.text-block p strong {
	color: #fff !important;
  font-size: 17px;
  width: 100%;
}

/* section */

div#shopify-section-template--28917386871121__product_list_fa6P9H {
    padding: 40px 0px 0px;
}
template--28917386871121__section_haDNAE {
    padding: 60px 0px;
}

div#shopify-section-template--28917386871121__section_mG9qTj {
    padding: 20px 0px 0px 0px;
}
div#shopify-section-template--28917386871121__section_cfpngT {
    padding: 70px 0px 0px;
}


/* section end */

#shopify-section-template--29150234968401__section_CkbxmG .background-image-container img {
width: 1440px;
  margin: auto;
}

#shopify-section-template--29150234968401__section_xmgN4G .background-image-container img {
width: 1440px;
  margin: auto;
}
 

/* >Kitchen */

div#shopify-section-template--29015669965137__section_4Nia3e, #shopify-section-template--29123371204945__section_4Nia3e {
    padding: 70px 0px;
}
#shopify-section-template--29015669965137__section_CkbxmG {
    padding: 40px 0px 60px;
}
#shopify-section-template--29015669965137__section_QwXPr8 {
    padding: 40px 0px 30px;
}
div#shopify-section-template--29015669965137__section_yhXCpB, #shopify-section-template--29123371204945__section_MQGQxN {
    padding: 30px 0px 70px;
}
div#shopify-section-template--29015669965137__section_kLkcjq {
    padding: 70px 0px;
}

#shopify-section-template--29015669965137__section_PYRH8E, #shopify-section-template--29123371204945__section_PmMphL {
  padding: 40px 0px 70px;
}
#shopify-section-template--29123371204945__section_PYRH8E {
  padding: 40px 0 70px;
}


/* Kitchen end */



/* Hoemdecor */


#shopify-section-template--29150234968401__slideshow_VjRQcd .slide__content {
	width: 50%;
	padding: 40px !important;
}
 
#shopify-section-template--29150234968401__slideshow_VjRQcd .spacing-style.text-block.text-block--AR1NmNmNacjVRdjF5c__text_UjXnwP.h3.text-block--align-left.text-block--full-width p {
	font-size: 24px;
}
 
#shopify-section-template--29150234968401__slideshow_VjRQcd .size-style.button {
	border: 1px solid #faf5ed !important;
	background-color: #2b2b2b !important;
	color: #faf5ed;
}
 
#shopify-section-template--29150234968401__slideshow_VjRQcd .size-style.button:hover {
	background-color: var(--primary-green-dark) !important;
	color: #f2ede5 !important;
	border: 1px solid #faf5ed !important;
}
#shopify-section-template--29150234968401__section_xmgN4G .border-style.custom-section-content {
	padding-left: 30px;
}
 
#shopify-section-template--29150234968401__section_xmgN4G .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	width: 100%;
	padding: 7% 65% 5% 0%;
}

#shopify-section-template--29150234968401__section_xmgN4G h3 {
	font-size: 44px;
	color: #fff;
}
#shopify-section-template--29150234968401__section_xmgN4G .spacing-style.text-block.text-block--AeWQxTWpTMGt5WDF6d__text_tbRFQD.h3.text-block--align-left.text-block--full-width p {
	font-size: 24px;
	font-family: Baskervville;
	padding: 0 0 10px;
}
#shopify-section-template--29150234968401__section_HYQDct .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	width: 100%;
	padding: 20% 0% 1% 70%;
}


#shopify-section-template--29150234968401__section_HYQDct .background-image-container img {
  width: 1430px;
  margin: auto;
}
#shopify-section-template--29150234968401__section_HYQDct .spacing-style.text-block.text-block--ANGRaMmRFSG1sbUlJN__text_eYRL3P.h3.text-block--align-left.text-block--full-width h3 {
	color: #fff;
}

#shopify-section-template--29150234968401__section_ttBeFM .border-style.custom-section-content {
	background-color: #faf5ed;
}

#shopify-section-template--29150234968401__section_fQKiKr .border-style.custom-section-content {
	background-color: #faf5ed;
}

#shopify-section-template--29150234968401__section_KrmNmJ p {
	font-size: 24px;
	width: 75%;
}
#shopify-section-template--29150234968401__section_fQKiKr p{
  font-size: 24px;
	width: 75%;
}

#shopify-section-template--29150234968401__section_ttBeFM p{
    font-size: 24px;
	width: 75%;
}

#shopify-section-template--29150234968401__section_kXkWFH p{
   font-size: 24px;
	width: 75%;
}

/* homedecor end */
footer .image-block__image.border-style:hover {
  transition: none !important;
  transform: inherit !important;
}

#shopify-section-template--29123371204945__section_yJtGkT {
  padding-bottom: 50px;
}
.product-information .text-block>* {
    max-inline-size: 100% !important;
}
.spacing-style.slide__content.color-scheme-6.background-transparent {
  height: 430px;
}
.spacing-style.slide__content.color-scheme-6.background-transparent .spacing-style.text-block.h3 h3, .spacing-style.slide__content.color-scheme-6.background-transparent .spacing-style.text-block.h3 h3 strong{
    font-weight: 400;
    font-family: Baskervville;
	font-size: 33px !important
}
.spacing-style.slide__content.color-scheme-6.background-transparent .spacing-style.text-block.h3 h3{
    color: #fff !important;
}
.spacing-style.slide__content.color-scheme-6.background-transparent .spacing-style.text-block.h3 h3 strong{
    color: #c6b049 !important;
}
.sc-fbFjKN.jShduQ.pf-22_.pf-button-1, .sc-fbFjKN.jShduQ.pf-24_.pf-button-1 {
	display: none;
}
div#shopify-section-template--29300399145297__slideshow_G3nQKX .slideshow-section.spacing-style.section.section--page-width.color-scheme-1.disable-section-top-offset {
    min-height: 430px !important;
}
.banner-flex-box a:hover {
  padding: 12px 20px !important;
  border: 1px solid #f2ede5;
}
.banner-flex-box a {
  padding: 12px 20px !important;
  border: 1px solid #f2ede5;
}
.slideshow-controls__thumbnails .slideshow-control {
	width: 130px !important;
}
.section-resource-list__content h3 {
	margin-top: 60px !important;
}
.product-navigation a:last-child {
	margin-right: 12px !important;
}
.slideshow-controls__thumbnails {
	padding-left: 3px !important;
}
.size-style.button.button--AVlJzVUZJVDJhTzQyc__button_Li3WYF {
  background-color: #2b2b2b !important;
  color: #faf5ed;
  border: 1px solid #faf5ed !important;
}

.size-style.button.button--AVlJzVUZJVDJhTzQyc__button_Li3WYF:hover {
  color: #f2ede5 !important;
  background-color: var(--primary-green-dark) !important;
}
.spacing-style.text-block.text-block--AdDhRbFducFNtNWRuV__text_64T4E4.rte.text-block--align-left.text-block--full-width {
  padding: 0px;
}
.wishlist-hero-items-count.wishlist-hero-items-count-text-plain.cart-count-bubble.wishlist-hero-header-show-count-only.wishlist-hero-items-count-exists {
  position: absolute;
  top: -7px;
  right: 0px;
  background-color: var(--primary-green-dark);
  color: #faf5ed;
  padding: 0px 7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 13px;
}
 .MuiGrid-grid-xl-2 {
    flex-grow: 0;
    max-width: 50% !important;
    flex-basis: 50% !important;
  }

  .button.predictive-search__search-button:hover {
  background-color: var(--primary-green-dark);
  color: #f2ede5 !important;
  border: 1px solid var(--primary-green-dark);
}
.button.predictive-search__search-button {
  background-color: #faf5ed;
  color: #2b2b2b;
  border: 1px solid #2B2B2B;
  border-radius: 3px;
  font-size: 16px;
  padding: 8px 20px;
  font-family: Futura !important;
}
  .predictive-search-results__wrapper-products {
    grid-template-columns: repeat(2,1fr) !important;
  }
  .search-modal__content.dialog-modal {
  width: 100%;
  margin: auto;
  max-width: 40%;
}

.spacing-style.text-block.text-block--AU3dJOXh0MGtNT2tjL__text_WVJert.rte.text-block--align-center.text-block--full-width p strong {
	color: var(--primary-green-dark);
}


/* content privacy */

/* Container for the legal table, full width */
.legal-table-box {
  width: 100%;
}

/* Main legal table styling */
.legal-table {
  width: 100%;
  border-collapse: collapse; /* Remove space between cells */
}

/* Styling for both table headers and cells */
.legal-table th,
.legal-table td {
  border: 1px solid #faf5ed;  /* Very light border color */
  padding: 12px 16px;         /* Comfortable padding inside cells */
  text-align: left;           /* Left-align all text */
  vertical-align: top;        /* Align content at the top of cells */
}

/* Styling for the left label column cells */
.legal-table .label {
  background-color: #faf5ed;  /* Light cream background */
  font-weight: 600;           /* Bold text */
  color: #2b2b2b;             /* Dark grey text */
  width: 260px;               /* Fixed width for labels */
}

/* Styling links inside the table */
.legal-table a {
  color: var(--primary-green-dark);             /* Deep teal link color */
  text-decoration: none;      /* Remove underline */
}

/* Hover effect on links */
.legal-table a:hover {
  text-decoration: underline; /* Underline on hover */
}



/* Endcontent privacy */



#shopify-section-template--28917387198801__main .section.page-width-content.color-scheme-1 {
  display: block;
  max-width: 1440px;
  margin: auto;
}
#shopify-section-template--29176117035345__section_b9qpcc .page-block.spacing-style h2, #shopify-section-template--29175868817745__section_WmiXkq .page-block.spacing-style h2, #shopify-section-template--29176032297297__section_EcbHAA .page-block.spacing-style h2 {
  display: none;
}
#shopify-section-template--29176117035345__section_b9qpcc .page-block.spacing-style .rte h2, #shopify-section-template--29175868817745__section_WmiXkq .page-block.spacing-style .rte h2, #shopify-section-template--29176032297297__section_EcbHAA .page-block.spacing-style .rte h2 {
  display: block;
}
#shopify-section-template--28917387198801__main .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {
  padding: 0px;
}

#shopify-section-template--29177726828881__section_W6QRRF .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  background-color: #f2ede5;
  padding: 40px 40px 0px;
  margin-top: 40px;
}
#shopify-section-template--29177726828881__section_4qTKL3 {
  padding: 70px 0 40px;
}
.spacing-style.text-block.text-block--AbEdRTTkxUVE5RGkrT__text_ntcX6k.rte.text-block--align-center.text-block--full-width p {
  width: 70%;
}
.details__header {
  padding: 0px;
  margin: 20px 0px 0px;
}
#shopify-section-template--29177726828881__section_4qTKL3 .border-style.custom-section-content, #shopify-section-template--29177726828881__section_kMKDfP .border-style.custom-section-content, #shopify-section-template--29177726828881__section_bhp7k4 .border-style.custom-section-content, #shopify-section-template--29177726828881__section_Tje4Xb .border-style.custom-section-content, #shopify-section-template--29177726828881__section_gPjHNJ .border-style.custom-section-content, #shopify-section-template--29177726828881__section_tgtJ36 .border-style.custom-section-content, #shopify-section-template--29177726828881__section_rdgq6J .border-style.custom-section-content, #shopify-section-template--29177726828881__section_iTNyg8 .border-style.custom-section-content{
  padding: 0px 40px;
}

#shopify-section-template--29177726828881__section_phXtyf .border-style.custom-section-content, #shopify-section-template--29177726828881__section_b3rryc .border-style.custom-section-content, #shopify-section-template--29177726828881__section_b3rryc .border-style.custom-section-content, #shopify-section-template--29177726828881__section_z3GHjx .border-style.custom-section-content, #shopify-section-template--29177726828881__section_jGz7bc .border-style.custom-section-content, #shopify-section-template--29177726828881__section_6tX3jr .border-style.custom-section-content, #shopify-section-template--29177726828881__section_RAmpWK .border-style.custom-section-content, #shopify-section-template--29177726828881__section_phCTcJ .border-style.custom-section-content, #shopify-section-template--29177726828881__section_RV6Lbh .border-style.custom-section-content{
  background-color: #f2ede5;
  padding: 40px 40px 40px;
}

/* #shopify-section-template--29123371204945__custom_liquid_XdgWeK td div img {
    display: none;
} */
.color-scheme-6 .slide__image-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #2b2b2bcf;
  top: 0;
  z-index: 1;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .color-scheme-6 .slide__image-container::after {
  display: none;
}
.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .size-style.button {
  border: 1px solid #faf5ed;
  background-color: #2b2b2b;
  color: #faf5ed;
}

.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .size-style.button:hover {
  background-color:var(--primary-green-dark);
  color: #f2ede5 !important;
  border: ;
}
.overlay--solid {
  width: 50% !important;
  right: auto;
}
.spacing-style.text-block.text-block--AazNyUFIrcUhkUCs0c__text_yHgU4V.h3.text-block--align-left.text-block--full-width h3 strong {
  font-family: Baskervville !important;
  font-weight: 400;
  display: block;
}
.color-scheme-6 .color-scheme-6 .h3.text-block--align-left.text-block--full-width p {
  font-size: 24px;
  font-family: Baskervville;
  padding: 0 0 10px;
}
.slideshow-section.spacing-style.section.section--page-width.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent {
  padding: 30px;
  width: 40%;
}
.color-scheme-6 .color-scheme-6 .spacing-style.text-block.h3 h3, .color-scheme-6 .color-scheme-6 .spacing-style.text-block.h3 h3 strong {
  color: #fff !important;
  font-weight: 400;
  font-family: Baskervville;
}
.color-scheme-6 .color-scheme-6 .slide__image-container::after {
  width: 40%;
}
.color-scheme-6 .color-scheme-6 .slide__image-container .h3 h3{
  color: #fff;
}
.color-scheme-6 .color-scheme-6 .slide__image-container p{
}
#shopify-section-template--29123371204945__section_JMJc8C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 35%;
  margin: auto;
}
#shopify-section-template--29123371204945__section_4Nia3e .rte.text-block--align-center p {
  padding: 10px 0px;
  width: 300px;
}
#shopify-section-template--29123371204945__section_JMJc8C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: auto;
}


#shopify-section-template--29123371204945__section_zxbfnn .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  gap: 20%;
}
.page-width-narrow.card-hover-effect-none.template-page\.melamine-wardrobes.page-163204104529 .gleryimgsec {
  width: 1380px;
}
.page-width-narrow.card-hover-effect-none.template-page\.melamine-wardrobes.page-163204104529 .size-style.button {
  background-color: #2b2b2b;
  color: #f2ede5;
}
.page-width-narrow.card-hover-effect-none.template-page\.melamine-wardrobes.page-163204104529 .size-style.button:hover {
  background-color:var(--primary-green-dark);
  color: #f2ede5 !important;
  border: ;
}
.white-bg-sec a, .p-color-box a {
  padding: 12px 20px !important;
}

.page-width-narrow.card-hover-effect-none.template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block.h4 p {
  color: var(--primary-green-dark);
  padding: 5px 0px 5px;
}
.spacing-style.text-block.text-block--AWDE2YW11R2d1ditaW__text_6FVAR3.rte.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--AVEZlOVJrOFNrZ0laQ__text_dnFqV3.rte.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--AUUtkWVpLUjhIUEkze__text_fiaMmb.rte.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--AZUpCaVk4cmRyUjZSQ__text_gRhmtD.rte.text-block--align-center.text-block--full-widthp {
  font-size: 24px;
  color: #2b2b2b;
  width: 70%;
}
#shopify-section-template--29129494430033__section_6QhyqA, #shopify-section-template--29129494430033__section_VNARdy {
  padding: 70px 0px 40px;
}
#shopify-section-template--29129494430033__section_VNARdy .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column, #shopify-section-template--29129494430033__section_6QhyqA .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {
  padding: 0px 30px;
}
.spacing-style.text-block.text-block--AZ25XVTZpaWg0UEJSR__text_9ftkY9.h2.text-block--align-center.text-block--full-width {
  width: 50%;
}
.spacing-style.text-block.text-block--AZjhZQVBVejZtUFFTU__text_9U67jX.rte.text-block--align-left.text-block--full-width {
  padding: 30px;
}
#shopify-section-template--29129494430033__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent {
  height: auto !important;
  padding-top: 40px;
}
.spacing-style.text-block.text-block--AczB2aURwVUxkOEgwR__text_XkJ9BP.h4 h4 {
  font-family: 'Baskervville' !important;
  font-size: 24px !important;
}
#shopify-section-template--29123371204945__section_4Nia3e, #shopify-section-template--29220043915601__section_4Nia3e {
  padding: 60px 0px 20px;
}

/* catalogue */
#shopify-section-template--29204643512657__section_4Nia3e a, .image-block.image-block--AZERUMUpUSmpVcXVjS__image_VE8z8H.image-block--height-fit.spacing-style.size-style {
  width: 40px !important;
  position: absolute;
  right: 15px;
  padding: 0px !important;
  bottom: 30px;
}

#shopify-section-template--29204643512657__section_4Nia3e .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding-right: 114px;
}
.spacing-style.text-block.text-block--AZi9PSlkwaTRmckF4Q__text_xdg9gi.h4.text-block--align-left.text-block--full-width p {
    padding-right: 20px;
}
 #shopify-section-template--29204643512657__section_4Nia3e .image-block:hover .image-block__image, #shopify-section-template--29204643512657__section_4BtYDY .image-block:hover .image-block__image{
  transform: inherit;
 }
 
 #shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style {
  border: 2px solid #D3C6AE;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  border: 0px solid #D3C6AE;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
  border: 0px solid #fff;
  padding: 0px 20px 20px;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block, #shopify-section-template--29204643512657__section_4Nia3e .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block {
  width: 100%;
  padding: 20px 20px 0px;
}
#shopify-section-template--29204643512657__section_4Nia3e .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
  /* width: 66%; */
  margin: auto;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style a.image-block{
 padding: 0px;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style:hover {
  background-color: #FAF5ED;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style:hover  a.image-block{
  background-image: url('/cdn/shop/files/Download_Button_1.png?v=1773810914')
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style:hover a.image-block img, #shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover a.image-block img {
  opacity: 0;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style:hover a.image-block, #shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover a.image-block  {
  background-image: url(/cdn/shop/files/Download_Button_1.png?v=1773810914);
  background-repeat: no-repeat;
  background-size: contain;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style.color-scheme-4,
#shopify-section-template--29347557572945__section_4Nia3e .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style.color-scheme-4
 {
  border-color: transparent !important;
  opacity: 0 !important;
}
#shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: auto;
  border: 2px solid #D3C6AE;
}
#shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover{
  background-color: #d3c6ae !important;
}
#shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  border: none;
  padding: 0px 20px 20px;
}
#shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
  background-color: #fff;
  margin-top: -30px;
}
.image-block.image-block--AQ0Vocjl4Um0vSTRma__image_zBWeAg.image-block--height-fill.spacing-style.size-style img {
  padding: 20px 20px 0px;
  width: auto;
}
.image-block.image-block--AZERUMUpUSmpVcXVjS__image_VE8z8H.image-block--height-fit.spacing-style.size-style {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: auto;
}
.spacing-style.text-block.text-block--AT0RKVTR5dWxNejZTd__text_4wGHgJ.rte.text-block--align-left.text-block--full-width {
  padding-right: 113px;
}
/* #shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover a.image-block {
  background-image: url(/cdn/shop/files/Download_Button_1.png?v=1773810914);
  background-repeat: no-repeat;
  background-size: contain;
} */
 #shopify-section-template--29204643512657__section_4BtYDY .border-style.custom-section-content {
  background-color: #FAF5ED;
  padding: 30px 30px 0px;
}
/* #shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover{
  background-color: #D3C6AE !important;
} */
#shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover, #shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:hover {
   background-color:  #D3C6AE !important;
}
/* #shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child:hover{
  background-color:  #D3C6AE !important;
} */
.image-block.image-block--AUGQzSmlITm5IbzVOe__image_nDJhg4.image-block--height-fit.spacing-style.size-style img {
  width: auto;
  position: absolute;
  right: 40px;
  bottom: 20px;
}
.spacing-style.text-block.text-block--AY1l6OE5VN2FqcXpET__text_bj6MRY.rte.text-block--align-left.text-block--full-width {
  padding: 0px 30px 0px;
  margin-top: -40px;
}
.spacing-style.text-block.text-block--AbVdnQWVwWXU1elFpN__text_A6Gnt9.rte.text-block--align-center.text-block--full-width {
  width: 640px;
}
.spacing-style.text-block.text-block--ATXZwcXIvVU42RWMva__text_fPErPr.h4.text-block--align-center.text-block--full-width {
  padding-bottom: 60px;
}
.spacing-style.text-block.text-block--AbVdnQWVwWXU1elFpN__text_A6Gnt9.rte.text-block--align-center.text-block--full-width p {
  color: #fff;
}
/* #shopify-section-template--29204643512657__slideshow_VjRQcd .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 45%;
} */
.spacing-style.text-block.text-block--AVG95ZTRiMGVZZTBaV__text_64T4E4.h4.text-block--align-left.text-block--full-width.text-block--background {
  background-color: transparent;
}
#shopify-section-template--29204643512657__section_4Nia3e {
  padding: 60px 0px 30px;
}
.spacing-style.text-block.text-block--Ad3Z3M21tUlg1Vzhmc__text_PrabNq.h3.text-block--align-center.text-block--full-width {
  padding-bottom: 30px;
}
#shopify-section-template--29204643512657__section_C6zrzc .border-style.custom-section-content{
  background-color: var(--primary-green-dark);
  padding: 40px 0px;
}
#shopify-section-template--29204643512657__section_4BtYDY {
  padding-bottom: 0px;
}
.spacing-style.text-block.text-block--AY1l6OE5VN2FqcXpET__text_bj6MRY.rte.text-block--align-left.text-block--full-width p {
  color: inherit;
  font-family: Futura !important;
}
#shopify-section-template--29204643512657__section_C6zrzc{
  padding: 0px;
}
/* end */
/* External door */


.color-scheme-1 .spacing-style.slide__content.color-scheme-6.background-transparent {
  width: 48%;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  /* width: 950px !important; */
  display: flex;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child div {
  /* width: 465px; */
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child {
  border: 2px solid #D3C6AE;
  left: -2px;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child div {
  background-color: #faf5ed;
  padding: 10px 10px 0 !important;
  /* width: 940px; */
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child div .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: auto !important;
  border: none !important;
  background-color: #fff;
  padding: 0px !important;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child div .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
  border: none;
  background-color: transparent !important;
}
.size-style.button.button--ATmNPOThkSnFFeVZoN__button_Ujtgt6 {
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}
.spacing-style.text-block.text-block--AaVM1NEo2TDNJRVNid__text_b7RRay.rte.text-block--align-center.text-block--full-width {
  /* width: 50%; */
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style .group-block__media-wrapper {
  display: none;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child div .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .spacing-style.text-block.text-block--ARjhBUERKZE9iVHVPW__text_XJwypg.h4.text-block--align-left.text-block--full-width {
  background-color: #fff;
  padding: 0px !important;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child div .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .spacing-style.text-block.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color {
  background-color: #fff !important;
  padding: 0px !important;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child div .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
  border: none;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child div .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
  border: none;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child {
border: 2px solid #D3C6AE;
}
a.contents.user-select-text p {
  font-size: 17px;
  font-weight: bold;
}
product-card:is(:hover, :focus-within) .quick-add__button {
  opacity: 0 !important;
}
rte-formatter.spacing-style.text-block.text-block--AdzRlOElVT2tiZk1Nb__text_qjHbTW.rte.text-block--align-left.rte {
    padding-right: 20px;
}
/*Popup */
.popup-link__content.dialog-modal.color-scheme-1 {
  width: 100% !important;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style:hover .button.button-unstyled.popup-link__button.text-left.spacing-style {
  background-image: url(/cdn/shop/files/Download_Button_1.png?v=1773810914);
  background-repeat: no-repeat;
  background-position: bottom;
}
.button.button-unstyled.popup-link__button.text-left.spacing-style {
  background-image: url('https://www.casavera.co.uk/cdn/shop/files/Download_Button.png?v=1773808318&width=3840');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  bottom: 30px;
} 
.button.button-unstyled.popup-link__button.text-left.spacing-style svg {
  opacity: 0;
}

/* end */
/*PVC FOIL CSS START */
/* #shopify-section-template--29135167750481__slideshow_dHHtbN .group-block-content {
	width: 49%;
} */
 #shopify-section-template--29015669965137__custom_liquid_ryQic6 #menuToggle {
	display: none !important;
}
#shopify-section-template--29135167750481__section_T7cJwd .border-style.custom-section-content,
#shopify-section-template--29135167750481__section_hd8xVD .border-style.custom-section-content,
#shopify-section-template--29135167750481__section_QgD6Uq .border-style.custom-section-content,
#shopify-section-template--29135167750481__section_RfTPa7 .border-style.custom-section-content,
#shopify-section-template--29135227781457__section_pBb9pQ .border-style.custom-section-content,
#shopify-section-template--29135227781457__section_ccgVDf .border-style.custom-section-content,
#shopify-section-template--29135227814225__section_A6HCnM .border-style.custom-section-content,
#shopify-section-template--29135198650705__section_8xbc4j .border-style.custom-section-content,
#shopify-section-template--29135198650705__section_QUmtQL .border-style.custom-section-content,
#shopify-section-template--29135198650705__section_4jPXLT .border-style.custom-section-content,
#shopify-section-template--29135198650705__section_cCFRfw .border-style.custom-section-content
{
	background-color: #faf5ed;
	padding: 30px;
}
#shopify-section-template--29135198126417__section_bLRiAC .border-style.custom-section-content,
#shopify-section-template--29135198126417__section_zm9kQf .border-style.custom-section-content {
	padding: 30px;
}
#shopify-section-template--29135167750481__slideshow_dHHtbN .spacing-style.slide__content.color-scheme-6.background-transparent,
#shopify-section-template--29135227781457__slideshow_yLPtjy .spacing-style.slide__content.color-scheme-6.background-transparent,
#shopify-section-template--29135198650705__slideshow_yYCM9T .spacing-style.slide__content.color-scheme-6.background-transparent,
#shopify-section-template--29135227814225__slideshow_9QhV3t .spacing-style.slide__content.color-scheme-6.background-transparent
 {
	height: auto !important;
  padding-top: 30px;
}
#shopify-section-template--29135167750481__section_T7cJwd,
#shopify-section-template--29135227781457__section_pBb9pQ,
#shopify-section-template--29135198650705__section_8xbc4j,
#shopify-section-template--29135227814225__section_A6HCnM {
	padding: 0;
}

.template-page\.lacquer-wardrobes.page-163222389073 .spacing-style.text-block p strong,
.template-page\.veneer-wardrobes.page-163222323537 .spacing-style.text-block p strong,
.template-page\.leather-wardrobes.page-163222356305 .spacing-style.text-block p strong,
.template-page\.glass-wardrobes .spacing-style.text-block p strong,
.template-page.page.page-pvc-foil-wardrobes .spacing-style.text-block p strong, 
.template-page.page.page-lacquer-wardrobes .spacing-style.text-block p strong,
.template-page.page.page-glass-wardrobes .spacing-style.text-block p strong,
.template-page.page.page-leather-wardrobes .spacing-style.text-block p strong,
.template-page.page.page-veneer-wardrobes .spacing-style.text-block p strong
{
	font-family: Baskervville;
	font-size: 24px;
	color: #777;
	font-weight: 400;
}
.spacing-style.text-block.text-block--AYWo3Y21LeUhRZDNCS__text_PtcAEQ.rte.text-block--align-center.text-block--full-width, 
.spacing-style.text-block.text-block--AYWo3Y21LeUhRZDNCS__text_PtcAEQ.rte.text-block--align-center.text-block--full-width p,
.spacing-style.text-block.text-block--AYXBnTktuS0swRDJTN__text_ikXkwN.rte p
 {
	/*font-size: 24px;
	color: #2b2b2b;
	width: 79%;*/
}
#shopify-section-template--29135167750481__section_MJX8Ty,
#shopify-section-template--29135198126417__section_bLRiAC,
#shopify-section-template--29135198126417__section_zm9kQf
 {
	padding: 40px 0 40px;
}
#shopify-section-template--29135198126417__section_ej4t6J
 {
	padding: 40px 30px;
}
.page-width-narrow.card-hover-effect-none.template-page\.pvc-foil-wardrobes.page-163222454609 .gleryimgsec,
.page-width-narrow.card-hover-effect-none.template-page\.lacquer-wardrobes.page-163222389073 .gleryimgsec
.page-width-narrow.card-hover-effect-none.template-page.page.page-pvc-foil-wardrobes .gleryimgsec,
.page-width-narrow.card-hover-effect-none.template-page.page.page-lacquer-wardrobes.page-163222389073 .gleryimgsec
{
  width: 1380px !important;
}
.template-page\.pvc-foil-wardrobes.page-163222454609 .spacing-style.text-block.text-block--align-center.text-block--full-width p,
.template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block.text-block--align-center.text-block--full-width p,
.template-page\.lacquer-wardrobes.page-163222389073 .spacing-style.text-block.text-block--align-center.text-block--full-width p,
.template-page\.veneer-wardrobes.page-163222323537 .spacing-style.text-block.text-block--align-center.text-block--full-width p, 
.template-page\.leather-wardrobes.page-163222356305 .spacing-style.text-block.text-block--align-center.text-block--full-width p,
.template-page\.glass-wardrobes.page-163222225233 .spacing-style.text-block.text-block--align-center.text-block--full-width p
{
	width: 80% !important;
	font-size: 24px;
	color: #2b2b2b;
}
.template-page\.pvc-foil-wardrobes .spacing-style.text-block.h4 p,
.template-page\.glass-wardrobes .spacing-style.text-block.h4 p,
.template-page\.veneer-wardrobes .spacing-style.text-block.h4 p,
.template-page\.leather-wardrobes .spacing-style.text-block.h4 p
{
	color: var(--primary-green-dark) !important;
	padding: 5px 0;
}
.template-page\.pvc-foil-wardrobes.page-163222454609 .size-style.button,
.template-page\.lacquer-wardrobes.page-163222389073 .size-style.button,
.template-page\.leather-wardrobes .size-style.button,
.template-page\.veneer-wardrobes .size-style.button,
.template-page\.glass-wardrobes .size-style.button
{
  background-color: #2b2b2b;
  color: #f2ede5;
}
.template-page\.pvc-foil-wardrobes.page-163222454609 .size-style.button:hover,
.template-page\.lacquer-wardrobes.page-163222389073 .size-style.button:hover,
.template-page\.leather-wardrobes .size-style.button:hover,
.template-page\.veneer-wardrobes .size-style.button:hover,
.template-page\.glass-wardrobes .size-style.button:hover
{
  background-color: var(--primary-green-dark) !important;
  color: #f2ede5 !important; 
}
#shopify-section-template--29135167750481__section_Fd6hYN .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column,
#shopify-section-template--29135198126417__section_exBwhm .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column,
#shopify-section-template--29135227781457__section_MLhBjK .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column,
#shopify-section-template--29135227814225__section_9nqyWC .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column,
#shopify-section-template--29135198650705__section_cCFRfw .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column 
{
	background-color: var(--primary-green-dark) !important;
  padding: 20px 10px 20px; 

}
#shopify-section-template--29135167750481__section_Fd6hYN .spacing-style.text-block p,
#shopify-section-template--29135198126417__section_exBwhm .spacing-style.text-block p,
#shopify-section-template--29129494430033__section_QwXPr8 .spacing-style.text-block p,
#shopify-section-template--29135227781457__section_MLhBjK .spacing-style.text-block p,
#shopify-section-template--29135227814225__section_9nqyWC .spacing-style.text-block p,
#shopify-section-template--29135198650705__section_cCFRfw .spacing-style.text-block p
{
	font-size: 17px;
	font-family: Futura;
	line-height: 1.7;
  color:#fff;
  width: 100% !important;
}
.template-page\.lacquer-wardrobes.page-163222389073 .section-wrapper{
  padding:0;
}
/*LACQUERED CSS START */
#shopify-section-template--29135198126417__slideshow_byQKUF .spacing-style.slide__content.color-scheme-6.background-transparent,
.template-page\.lacquer-wardrobes.page-163222389073 .group-block-content {
  height: auto !important; 
}
#shopify-section-template--29135198126417__section_bfM3dr {
	padding: 0;
}
#shopify-section-template--29135198126417__section_bfM3dr .border-style.custom-section-content,
#shopify-section-template--29135198126417__section_VPKXHx .border-style.custom-section-content,
#shopify-section-template--29135198126417__section_zDD8LQ .border-style.custom-section-content{
	 background-color: #faf5ed;
    padding: 30px;
}

/*LACQUERED CSS END */
/*PVC FOIL RESPONSIVE CSS START */
@media screen and (max-width: 1280px) {
  .header__row.header__row--bottom.color-scheme-1.section.section--full-width-margin.section--page-width.mobile\:hidden .header__columns.spacing-style {
	padding: 10px 0px 10px 0px;
}
	.page-width-narrow.card-hover-effect-none.template-page\.pvc-foil-wardrobes.page-163222454609 .gleryimgsec,
  .page-width-narrow.card-hover-effect-none.template-page\.lacquer-wardrobes.page-163222389073 .gleryimgsec{
		width: auto; !important
	}
  .page-width-narrow.card-hover-effect-none.template-page\.pvc-foil-wardrobes.page-163222454609 .gleryimgsec, 
  .page-width-narrow.card-hover-effect-none.template-page\.lacquer-wardrobes.page-163222389073 .gleryimgsec {
    width: auto !important;
  }
  #shopify-section-template--29135167750481__slideshow_dHHtbN .section,
  #shopify-section-template--29135198126417__slideshow_byQKUF .section {
		display: inherit;
	}
  #shopify-section-template--29135167750481__section_T7cJwd, #shopify-section-template--29135167750481__section_hd8xVD, 
	#shopify-section-template--29135167750481__section_QgD6Uq, #shopify-section-template--29135167750481__section_RfTPa7,
  #shopify-section-template--29135198126417__section_bfM3dr, #shopify-section-template--29135198126417__section_VPKXHx,
  #shopify-section-template--29135198126417__section_zDD8LQ  {
		background-color: #faf5ed;
		padding: 30px;
	}
  #shopify-section-template--29135198126417__slideshow_byQKUF .spacing-style.slide__content.color-scheme-6.background-transparent,
  #shopify-section-template--29135167750481__slideshow_dHHtbN{
      padding-top: 30px;
  }
  #shopify-section-template--29129494430033__section_4Nia3e, #shopify-section-template--29135227781457__section_VdHbEx, #shopify-section-template--29135198650705__section_mpLENR, #shopify-section-template--29135227814225__section_FgPwMj, #shopify-section-template--29135198126417__section_74c7p3, #shopify-section-template--29135167750481__section_NzEkKR {
    background-color: #faf5ed;
  }
}
@media screen and (max-width: 1270px) {
	#shopify-section-template--29135167750481__slideshow_dHHtbN .slide__content h1,
  #shopify-section-template--29135198126417__slideshow_byQKUF .slide__content h1 {
		font-size: 30px !important;
	}
	.template-page\.pvc-foil-wardrobes.page-163222454609 .spacing-style.text-block.text-block--align-center.text-block--full-width p,
  .template-page\.lacquer-wardrobes.page-163222389073 .spacing-style.text-block.text-block--align-center.text-block--full-width p, {
		width: 90% !important;
		font-size: 22px;		
	}
	.spacing-style.text-block.h3 h3 {
		font-size: 40px;		
	}	
  #shopify-section-template--29135167750481__section_T7cJwd, #shopify-section-template--29135167750481__section_hd8xVD, 
  #shopify-section-template--29135167750481__section_QgD6Uq, #shopify-section-template--29135167750481__section_RfTPa7, 
  #shopify-section-template--29135198126417__section_bfM3dr, #shopify-section-template--29135198126417__section_VPKXHx, 
  #shopify-section-template--29135198126417__section_zDD8LQ {
    padding: 30px 0 40px;
  }
  #shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content h4, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content h4, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content h4 {
  display: block !important;
  }
}

@media screen and (max-width: 1120px) {
.spacing-style.text-block.text-block--Ac0hRVStUeVlzZzZ6a__text_4m4iD9.rte.text-block--align-center h3, .spacing-style.text-block.text-block--AUnZtdTBaQXlWQVJ5a__text_4m4iD9.rte.text-block--align-center h3, .spacing-style.text-block.text-block--ATUdYSlhDaWdsZ0dER__text_4m4iD9.rte.text-block--align-center h3 {
   display: block !important;
}
#shopify-section-template--28917387034961__section_npp9CV p, #shopify-section-template--29428671480145__section_npp9CV p, #shopify-section-template--29475433611601__section_npp9CV p{
font-size: 14px;
}
}

@media screen and (max-width: 1025px) {
  .spacing-style.text-block.text-block--AZi9PSlkwaTRmckF4Q__text_xdg9gi.h4.text-block--align-left.text-block--full-width p {
    padding-right: 5px;
}
	.template-page\.pvc-foil-wardrobes .spacing-style.text-block p,.template-page\.lacquer-wardrobes.page-163222389073 .spacing-style.text-block p{
		font-size: 14px !important;	
	}
	#shopify-section-template--29135167750481__slideshow_dHHtbN .slide__content h1 {
		font-size: 30px !important;
	}
  #shopify-section-template--29135198126417__section_bfM3dr .border-style.custom-section-content, #shopify-section-template--29135198126417__section_VPKXHx .border-style.custom-section-content, #shopify-section-template--29135198126417__section_zDD8LQ .border-style.custom-section-content {
     padding: 0;
  }
    #shopify-section-template--29135167750481__section_MJX8Ty, #shopify-section-template--29135198126417__section_bLRiAC, #shopify-section-template--29135198126417__section_zm9kQf {
    padding: 20px 0 0px;
  }
  #shopify-section-template--29135198126417__section_bLRiAC .border-style.custom-section-content, #shopify-section-template--29135198126417__section_zm9kQf .border-style.custom-section-content {
    padding: 30px 0px;
  }

}
 @media screen and (max-width:767px) {
  #shopify-section-template--29135167750481__slideshow_dHHtbN .slide__content h1, 
  #shopify-section-template--29135198126417__slideshow_byQKUF .slide__content h1 {
    text-align: center !important;
  }
}

/*PVC FOIL CSS END */



/* <vanities */

.size-style.button.button--ASVhXNGN6aHBlM3g5d__button_9Vq4Bm {
  background-color: #2b2b2b;
  color: #f2ede5;
  margin: 10px auto 20px !important;
}
.size-style.button.button--ASVhXNGN6aHBlM3g5d__button_9Vq4Bm:hover{
background-color: var(--primary-green-dark);
  color: #f2ede5 !important;
  border: 1px solid var(--primary-green-dark);
  }
  .spacing-style.text-block.text-block--AR1JSUWdaNmlrSy9tc__text_mM6DDJ.rte.text-block--align-center {
  min-height: 135px;
}
.spacing-style.text-block.text-block--AWDhRWlp5NG0wMm01U__text_xt88Tn.rte.text-block--align-left.text-block--full-width {
  padding-right: 30px;
}

/* vanities end */

#shopify-section-template--28917386871121__section_haDNAE {
  padding: 40px 0px 60px;
}
.image-block.image-block--AWUhRMCt4OE40SXhnU__image_8FTCtx.image-block--height-fit.spacing-style.size-style img {
  width: 97%;
  padding-left: 5px;
}
.image-block__image {
  object-fit: fill !important;
}
.image-block.image-block--AVEhRanlNOXJlTlRNQ__image_xbWYi7.image-block--height-fill.spacing-style.size-style img {
    object-fit: contain !important;
}
.product-grid.product-grid--template--28917387034961__main.product-grid--grid li, ul.product-grid.product-grid--template--29300399145297__main.product-grid--grid li {
  border: 1px solid #D3C6AE;
  padding: 15px;
}
.product-grid.product-grid--template--28917387034961__main.product-grid--grid .product-media-container img {
    object-fit: cover !important;
}
.quick-add__button .add-to-cart-text {
  color: #2B2B2B !important;
}
#shopify-section-template--29220043915601__section_9GaR4C .spacing-style.text-block.rte p {
  min-height: 120px;
}
.template-page\.unsubscribe-confirmation .image-block:hover .image-block__image, .template-page\.casavera .image-block:hover .image-block__image, .template-page\.trade-consultation .image-block:hover .image-block__image, .template-page\.launch-rsvp .image-block:hover .image-block__image, .template-page\.design-consultation .image-block:hover .image-block__image, .template-page\.trade-programme .image-block:hover .image-block__image, .template-page\.catalogue-download .image-block:hover .image-block__image, .template-page\.trade-catalogue-download .image-block:hover .image-block__image {
  transform: inherit !important;
}
#shopify-section-template--29220043915601__section_PYRH8E {
  padding: 40px 0px 50px;
}

#shopify-section-template--29220043915601__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) {
  background-color: #faf5ed;
  padding: 10px 10px 20px !important;
  border: 2px solid #D3C6AE;
}
/*
.size-style.button.button--Aem8wVGI3Y1EwbTRQd__button_Ujtgt6{
  border: 1px solid #faf5ed !important;
  background-color: #2b2b2b !important;
  color: #faf5ed;
}
.size-style.button.button--Aem8wVGI3Y1EwbTRQd__button_Ujtgt6:hover {
  color: #f2ede5 !important;
  background-color: #076054 !important;
}*/
#shopify-section-template--29208321163601__section_9GaR4C .image-block.size-style img {
  object-fit: cover !important;
}

.template-collection .product-grid--grid {
	--product-grid-columns-desktop: repeat(auto-fill, minmax(280px, 1fr))!important;
}
.product-recommendations .product-id {
	display: none;
}

a.size-style.button.button--ARTJyWkhRNmVxVG9sV__button_ipM6tL {
	margin-top: 30px !important;
	margin-bottom: 0px !important;
	margin: auto;
}
a.size-style.button.button--ARTJyWkhRNmVxVG9sV__button_ipM6tL:hover {
  color: #f2ede5 !important;
  background-color: var(--primary-green-dark) !important;
}
a.size-style.button.button--ARTJyWkhRNmVxVG9sV__button_ipM6t{
  border: 1px solid #faf5ed !important;
  background-color: #2b2b2b !important;
  color: #faf5ed;
}
/*FORM CSS start */
#contact_form {
  max-width: 500px;
  margin: auto;
}
textarea, input:not([type="checkbox"], [type="radio"]) {
	background-color: transparent;
	/* border-color: var(--color-input-border); */
	border: 1px solid #a8a8a8;
}
#contact_form label {
  display: block;
  margin-bottom: 5px; 
}
.required {
  color: red;
}
#contact_form input[type="text"],
#contact_form input[type="email"],
#contact_form input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}
 
/* Checkbox */
.product-checkbox label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}
 
.product-checkbox input {
  margin-right: 8px;
}
 
/* Button small & centered */
#contact_form button {
  display: block;
  width: auto;  
  margin: 20px auto;
  cursor: pointer;
background-color: #FAF5ED;
  color: #2B2B2B;
  border: 1px solid #2B2B2B;
  border-radius: 3px;
  font-size: 16px;
  padding: 8px 20px 8px;
  font-family: 'Futura' !important;
}
#contact_form button .size-style.button:hover {
	background-color: var(--primary-green-dark);
	color: #f2ede5 !important;
	border: 1px solid var(--primary-green-dark);
}
 
.size-style.button.button--Ad0tSZ1lFR09GaWQxa__button_7kyHHi {
	margin-top: -90px;
	margin-bottom: 80px;
	margin-left: 48%;
}
/*FORM CSS END */




.product-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
	width: 100% !important;
  border-top: 1px solid #f2ede5;
}
.nav-btn {
  padding: 10px 18px;
  background: #f2ede5;
  color: #2B2B2B;
  text-decoration: none;
  font-size: 14px;
  border-radius: 1px;
    font-size: 16px;
    font-family: Futura !important;
}
.nav-btn:hover {
  background: var(--primary-green-dark);
  color:  #f2ede5;
}
.template-product.product .product-media img {
    border: none;
}

.product-recommendations {
	padding: 60px 0px 20px 0px;
}
.product-navigation {
	display: inline-flex;
	height: auto;
	margin-top: 0;
	padding-top: 20px;
	border-top: 1px solid #eee;
	position: absolute;
	bottom: -60px;
	z-index: 1;
}
p.product-id {
    text-align: end;
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 12px;
}

.product-card__content.layout-panel-flex.layout-panel-flex--column rte-formatter.spacing-style p {
    margin-right: 20px !important;
}
 .template-product .product-form-buttons.spacing-style.product-form-buttons--stacked {
	display: none;
}
 
.template-product shopify-block-AM3hBUHNZM3RrTDhRS__wishlist_hero_custom_product_button_BXmex4 {
	display: none;
}
.template-product #wishlist-hero-product-page-button {
	display: none;
}
#contact_form button:hover{
background-color: var(--primary-green-dark) !important;
  color: #f2ede5 !important;
  border: 1px solid var(--primary-green-dark);
}
.template-product  .buy-buttons-block.buy-buttons-block {
	display: none;
}
.template-product .divider {
	display: none;
}
.product-navigation .nav-btn {
	padding: 10px 20px;;
	font-size: 14px;
	border-radius: 3px;
	font-size: 14px;
	margin: 2px;
}
#product-recommendations-template--28917387100497__product_recommendations_qggXJq {
	padding: 80px 0px;
}
.page-width-narrow.card-hover-effect-none.template-page.page.page-unsubscribe-confirmation .image-block:hover .image-block__image, 
.page-width-narrow.card-hover-effect-none.template-page.page.page-casavera .image-block:hover .image-block__image, 
.page-width-narrow.card-hover-effect-none.template-page.page.page-trade-consultation .image-block:hover .image-block__image, 
.page-width-narrow.card-hover-effect-none.template-page.page.page-launch-rsvp .image-block:hover .image-block__image, 
.page-width-narrow.card-hover-effect-none.template-page.page.page-design-consultation .image-block:hover .image-block__image, 
.page-width-narrow.card-hover-effect-none.template-page.page.page-trade-programme .image-block:hover .image-block__image, 
.page-width-narrow.card-hover-effect-none.template-page.page.page-catalogue-download .image-block:hover .image-block__image, 
.page-width-narrow.card-hover-effect-none.template-page.page.page-trade-catalogue-download .image-block:hover .image-block__image {
  transform: inherit !important;
}



.template-page.page.page-casavera  rte-formatter.spacing-style p {

	margin: auto !important;

	color: #2b2b2b !important;

}

#shopify-section-template--29244429173073__section_jmTt8j .template-page.page.page-casavera .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {

	background: #faf5ed;

	padding: 20px;

}

.spacing-style.text-block.text-block--AY2d4QTU4SmFmR2R2a__text_BBReDL.rte.text-block--align-center {

	margin-bottom: 20px;

}
 
.size-style.button.button--AOHVSc3NVL0czQnlBO__button_yWXpEK, .size-style.button.button--AVFJKdHFudjNEWEcwV__button_eDLAQL {

	margin-top: 30px;

}
.size-style.button.button--AanRpTGU0N0VaekhUN__button_WtdEhe, .size-style.button.button--AZFgrcFJrdEJmaEhBa__button_Ae3x9d,
.size-style.button.button--ASmg5ZlliUENkSzRaN__button_ihXyBy, .size-style.button.button--Adkh5ak54ZHFOMFZ1b__button_bFEM7f,
.size-style.button.button--AOHVSc3NVL0czQnlBO__button_yWXpEK, .size-style.button.button--AVFJKdHFudjNEWEcwV__button_eDLAQL {
	margin-top: 30px;
}
#shopify-section-template--29244429173073__section_jmTt8j .template-page.page.page-casavera .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	background: #faf5ed !important;
	padding: 20px;
}
.template-page.page.page-casavera rte-formatter.spacing-style p {
	margin: auto !important;
	color: #2b2b2b !important;
	font-size: 24px;
}

.spacing-style.text-block.text-block--AanREaWRtRUpicjBQd__text_RXPP39.rte.text-block--align-center p, .spacing-style.text-block.text-block--AanREaWRtRUpicjBQd__text_RXPP39.rte.text-block--align-center p a {
	color: #000 !important;
	font-size: 17px;
}
.template-page.page.page-casavera rte-formatter.spacing-style p {
	margin: auto !important;
	color: #2b2b2b !important;
	font-size: 19px;
}
#shopify-section-template--29244429173073__section_jmTt8j .group-block. Group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style.color-scheme-3 {
	padding: 25px;
}
 
div#shopify-section-template--29244429173073__section_jmTt8j .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style.color-scheme-3 .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style.color-scheme-1 {
    background-color: #f2ede5;
}
#shopify-section-template--29220043915601__section_DrzARE .custom.custom-typography.custom-font-size.custom-color p {
  width: 100%;
}
.size-style.button.button--ARkdUdGZpNWxiT1Y4e__button_WRqNBF {
	margin-top: 30px;
}




#shopify-section-template--29267324928337__section_C6zrzc .border-style.custom-section-content {
	background-color: var(--primary-green-dark);
	padding: 40px 0px;
}

#shopify-section-template--29267324928337__section_C6zrzc .spacing-style.text-block p {
	font-size: 17px;
	font-family: 'Futura';
	color: #fff;
}


.spacing-style.text-block.text-block--ALzhoWVY5V3JwQllLd__text_64T4E4.h4.text-block--align-left.text-block--full-width.text-block--background {
	background: none;
}


#shopify-section-template--29267324928337__section_4BtYDY:hover .image-block:hover .image-block__image {
	/* transform: scale(1.1); */
	transform: unset;
}

#shopify-section-template--29267324928337__section_C6zrzc .border-style.custom-section-content {
	background-color: var(--primary-green-dark);
	padding: 40px 0px;
}

#shopify-section-template--29267324928337__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
	background-color: #fff;
	margin-top: -30px;
}
#shopify-section-template--29267324928337__section_C6zrzc {
	padding: 0px;
}

#shopify-section-template--29267324928337__section_4BtYDY {
	padding: 0;
}
.spacing-style.text-block.text-block--ANUNjU09mWU1BdE14d__text_A6Gnt9.rte.text-block--align-center.text-block--full-width {
	width: 640px;
}

#shopify-section-template--29282736603473__section_qEi3dV .spacing-style.layout-panel-flex{
	background: #f2ede5;
}

#shopify-section-template--29282736603473__section_TGNThB .border-style.custom-section-content {
	background: #faf5ed;
	padding: 30px;
}
#shopify-section-template--29282736603473__collectible_books_xjgYYr {

	padding: 40px 0px;

}
 #shopify-section-template--29282736603473__collectible_books_xjgYYr .btn.open-popup {
	border-radius: 3px;
	background-color: #FAF5ED;
	padding: 10px 30px;
	margin-top: 0px;
	font-size: 14px;
	color: #2B2B2B;
	border: 0px solid #faf5ed;
	bottom: 15px;
}

 #shopify-section-template--29282736603473__collectible_books_xjgYYr .btn.open-popup:hover {
  border: 0px solid #faf5ed;
  background-color: var(--primary-green-dark);
  color: #f2ede5 !important;
}


#shopify-section-template--29289057550673__section_qEi3dV .border-style.custom-section-content {
	background: #f2ede5;
	padding: 30px !important;
	padding-bottom: 40px;
}

#shopify-section-template--29289057550673__section_qEi3dV .spacing-style.text-block.text-block--AZktQRGMrRjJ3S3N5T__text_JM9NKX.rte.text-block--align-center.text-block--full-width p {
	
	color: #2b2b2b;
	text-align: center;
}

/* ul.product-grid.product-grid--template--29300399145297__main.product-grid--grid li img {
    object-fit: cover !important;
} */


#shopify-section-template--29289057550673__collectible_books_xjgYYr .btn.open-popup {
	border-radius: 3px;
	background-color: #FAF5ED;
	padding: 10px 30px;
	margin-top: 0px;
	font-size: 14px;
	color: #2B2B2B;
	border: 0px solid #faf5ed;
	bottom: 15px;
}
#shopify-section-template--29289057550673__collectible_books_xjgYYr .btn.open-popup:hover {
	border: 0px solid #faf5ed;
	background-color: var(--primary-green-dark);
	color: #f2ede5 !important;
}

#shopify-section-template--29289057550673__section_h8UqcW {
	padding-bottom: 0;
	margin-bottom: -20px;
}


#shopify-section-template--29287877935441__collectible_books_xjgYYr .btn.open-popup {
	border-radius: 3px;
	background-color: #FAF5ED;
	padding: 10px 30px;
	margin-top: 0px;
	font-size: 14px;
	color: #2B2B2B;
	border: 0px solid #faf5ed;
	bottom: 15px;
}

#shopify-section-template--29287877935441__collectible_books_xjgYYr .btn.open-popup:hover {
	border: 0px solid #faf5ed;
	background-color: var(--primary-green-dark);
	color: #f2ede5 !important;
}

#shopify-section-template--29287877935441__section_h8UqcW {
  	padding-bottom: 0;
	margin-bottom: -20px;
}


#shopify-section-template--29288975761745__collectible_books_xjgYYr .btn.open-popup {
	border-radius: 3px;
	background-color: #FAF5ED;
	padding: 10px 30px;
	margin-top: 0px;
	font-size: 14px;
	color: #2B2B2B;
	border: 0px solid #faf5ed;
	bottom: 15px;
}
#shopify-section-template--29288975761745__collectible_books_xjgYYr .btn.open-popup:hover {
	border: 0px solid #faf5ed;
	background-color: var(--primary-green-dark);
	color: #f2ede5 !important;
}
#shopify-section-template--29288975761745__section_h8UqcW {
	padding-bottom: 0;
	margin-bottom: -20px;
}


#header-component {
	background-color: #fff;
}
.headcontact-icons-outer .social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}

.headcontact-icons-outer .social-icons li {
  display: inline-block;
}

.headcontact-icons-outer .social-icons a {
  width: 30px;
  height: 30px;
  background: #777777;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

/* Hover Colors */
.headcontact-icons-outer .social-icons a.facebook:hover {
  background: #00352f;
  color: #fff;
}

.headcontact-icons-outer .social-icons a.instagram:hover {
  background: #00352f;
  color: #fff;
}

.headcontact-icons-outer .social-icons a.linkedin:hover {
  background: #00352f;
  color: #fff;
}

.headcontact-icons-outer .social-icons a.pinterest:hover {
  background: #00352f;
  color: #fff;
}

.headcontact-icons-outer .social-icons a.whatsapp:hover {
  background:#00352f;
  color: #fff;
}

.headcontact-icons-outer .social-icons a.x:hover {
  background: #00352f;
  color: #fff;
}

.headertradebtn.section.section--page-width a {
	position: absolute;
	top: 25px;
	z-index: 999;
	border: 1px solid #2B2B2B;
	padding: 8px 15px;
	border-radius: 4px;
	font-family: Futura;
	font-size: 16px;
	color: #2B2B2B;
	left: 2px;
}

#shopify-section-sections--28917387264337__custom_liquid_xqxRnR {
	display: none;
}

.page-contact .contact-form input::placeholder,
.page-contact .contact-form textarea::placeholder {
 color: #fff;   
 opacity: 1;  
 

}

.page-contact .contact-form input::-webkit-input-placeholder,
.page-contact .contact-form textarea::-webkit-input-placeholder {
  color: #fff;
   opacity: 1; 
}

.page-contact .contact-form input:-ms-input-placeholder,
.page-contact .contact-form textarea:-ms-input-placeholder {
  color: #fff;
}
.page-contact #ContactForm-body {
	border: 1px solid #fff9 !important;
}
.product-grid.product-grid--template--29333080572241__main.product-grid--grid li, ul.product-grid.product-grid--template--29300399145297__main.product-grid--grid li {
    border: 1px solid #D3C6AE;
    padding: 15px;
}
/* #shopify-section-template--28917387100497__main .slideshow-control.slideshow-control--previous.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent.flip-x {
    background-image: url('/cdn/shop/files/Button_Carousel-left.png?v=1772522821');
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain;
    background-color: transparent !important;
    color: transparent !important;
    opacity: 1 !important;
    transform: rotate(180deg);
    animation: none !important;
    padding: 15px !important;
}
#shopify-section-template--28917387100497__main .slideshow-control.slideshow-control--next.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent {
    background-image: url(/cdn/shop/files/Button_Carousel-right.png?v=1772522821) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain;
    background-color: #ffffff00 !important;
    color: transparent !important;
    opacity: 1 !important;
    animation: none !important;
    padding: 15px !important;
}
#shopify-section-template--28917387100497__main button.slideshow-control.slideshow-control--next.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent:hover {
    background-image: url('/cdn/shop/files/State_Hover.png?v=1772709089') !important;
}
#shopify-section-template--28917387100497__main button.slideshow-control.slideshow-control--previous.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent.flip-x:hover {
    background-image: url('/cdn/shop/files/Button_Carousel.png?v=1772712102') !important;
} */
slideshow-arrows {
    mix-blend-mode: normal !important;
}

#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ .headcontact-btn {
	width: auto;
	margin: 10px auto;
}

.product-id {
	display: none;
}
.size-style.button.button--AMmk5RmZ4UWtJaGphW__button_DgRC7M {
	display: none;
}
.size-style.button.button--AalJESkNOSStieVRkL__button_kJmnGR {
	display: none;
}
.template-collection product-price {
	display: none !important;
}

.spacing-style.text-block.text-block--ANDJ6cTN6YU1UWk1qb__text_64T4E4.h4.text-block--align-left.text-block--full-width.text-block--background {
	background: none !important;
}

#shopify-section-template--29347557572945__section_4Nia3e .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
	/* width: 66%; */
	margin: auto;
}

#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style {
	border: 2px solid #D3C6AE;
}
#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
	border: 0px solid #fff !important;
	padding: 0px 20px 20px;
}

#shopify-section-template--29347557572945__section_4Nia3e .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block, #shopify-section-template--29347557572945__section_4Nia3e .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block {
	width: 100%;
	padding: 20px 20px 0px;
}

#shopify-section-template--29347557572945__section_4Nia3e a{

	position: absolute;
	right: 15px;
	
	bottom: 30px;
}

#shopify-section-template--29347557572945__section_4Nia3e .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	padding-right: 140px;
}
.image-block.image-block--AVlREeTcwdER3SVU0V__image_eTQCCf.image-block--height-fill.spacing-style.size-style img {
	border: 1px solid #d3c6ae;
}

#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style:hover {
	background-color: #FAF5ED;
}

.spacing-style.text-block.text-block--AUnExejlEVTJabUFoS__text_EXJwKn.rte p {
	color: #c8a951;
	text-transform: uppercase;
  font-size:15px;
}

.spacing-style.text-block.text-block--ARURING14U1NkNWU4S__text_N4Fccf.rte p::after {
	content: '';
	display: inline-flex;
	width: 40px;
	height: 1px;
	background: #c89a51;
	margin-top: 14px !important;
	position: absolute;
	margin-left: 10px;
}

#shopify-section-template--29347557572945__section_JPjP6g .border-style.custom-section-content {
	background: #faf5ed;
	border-top: 1px solid #ede4dc;
	border-bottom: 1px solid #ede4dc;
	padding: 20px 0px 20px 0px;
}
#shopify-section-template--29347557572945__section_JPjP6g {
	margin-top: 25px;
	margin-bottom: 5px;
}
.spacing-style.text-block.text-block--AUlZldmdCYkJlL3kzV__text_7paNqV.rte.text-block--align-center p {
	font-family: Baskervville;
	font-weight: 400;
	text-align: center;
	font-size: 24px;
	color: #777;
}
.spacing-style.text-block.text-block--AYWlVUWxwN2Z6Zklkd__text_pcXT7U.rte p{
  font-family: Baskervville;
	font-weight: 400;
	text-align: center;
padding-right: 20px;
	color: #023430;
}
.spacing-style.text-block.text-block--Adm5PWTlONHJLejZmU__text_DAMyKr.rte.text-block--align-left p {
	font-size: 80px;
 color: #faf5ed;
 text-align: center;
 font-family: var(--font-h3--family);
}

/*.spacing-style.text-block.text-block--Adm5PWTlONHJLejZmU__text_DAMyKr.rte.text-block--align-left p::after {
	content: '';
	display: inline-flex;
	width: 40px;
	height: 1px;
	margin-top: 22px;
	background: #faf5ed;
	position: absolute;
	margin-left: 10px;
} */

.gold-rule {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 10px;
}
.gold-rule__line {
	width: 40px;
	height: 1px;
	background: #faf5ed;
	opacity: 0.7;
}

.gold-rule__diamond {
	width: 5px;
	height: 5px;
	background: #faf5ed;
	transform: rotate(45deg);
	flex-shrink: 0;
}
.product-card .price {
    display: none;
}

.search-action.search-action--hidden-on-drawer {
	display: none;
  visibility: hidden;
}
.account-button.header-actions__action.color-scheme-1 {
	display: none;
  visibility: hidden;
}
.site-header__icon.site-header__link.wishlist-hero-header-icon.wishlist-hero-header-show-count-only {
	display: none;
  visibility: hidden;
}
/* .image-block.image-block--ANnZwSkJLbDFkTzBpL__image_nm3Yjm.image-block--height-fill.spacing-style.size-style:hover img {
  opacity: 0;
}
.image-block.image-block--ANnZwSkJLbDFkTzBpL__image_nm3Yjm.image-block--height-fill.spacing-style.size-style:hover {
  background-image: url('//www.casavera.co.uk/cdn/shop/files/thumbnail_catalogue_kitchens_hover.png?v=1774847529&width=900');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity .4s ease, transform .4s ease;
} */

#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding: 0px !important;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block{
  padding: 20px 0px 0px !important;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block:first-child {
  display: none;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover .image-block:first-child {
  display: block;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover .image-block:last-child {
  display: none;
}
/* #shopify-section-template--29204643512657__section_4Nia3e .image-block:hover{
  transform: scale(1.05) !important;
} */
#shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover .image-block:first-child:hover .image-block__image{
  transform: scale(1.05) !important;
  border: none !important;
}
/* llll */
#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding: 0px !important;
}
#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block{
  padding: 20px 0px 0px !important;
}
#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block:first-child {
  display: none;
}
#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover .image-block:first-child {
  display: block;
}
#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover .image-block:last-child {
  display: none;
}
/* #shopify-section-template--29204643512657__section_4Nia3e .image-block:hover{
  transform: scale(1.05) !important;
} */
#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column:hover .image-block:first-child:hover .image-block__image{
  transform: scale(1.05) !important;
  border: 0px solid #d3c6ae !important;
}


#submenu-5 .mega-menu__list.list-unstyled li:nth-child(3) div {
  position: relative;
  left: 40px;
}
#submenu-5 .mega-menu__list.list-unstyled li:last-child div {
  position: relative;
  left: 80px;
}
section.books2-section.books2-full-width {
    width: 1510px;
    margin: auto;
}
.headertradebtn.section.section--page-width a:hover {
  background: var(--primary-green-dark);
  color: #f2ede5;
}

.headcontact-info.active-contact {
	padding-top: 20px;
}

.country-name {
	font-size: 13px !important;
}

.headcontact-number {
	padding: 10px 0px 0px 0px;
}

.page-id-163927621969 #shopify-section-template--29347557572945__slideshow_VjRQcd .color-scheme-6 .slide__image-container::after {
	width: 100%;

	background-color: #2b2b2bcf;
	
}

.page-id-163927621969 #shopify-section-template--29347557572945__slideshow_VjRQcd .color-scheme-1 .spacing-style.slide__content.color-scheme-6.background-transparent {
	width: auto;
}


.page-id-163927621969 #shopify-section-template--29347557572945__slideshow_VjRQcd .slide__image-container img {
	opacity: 1;
}
.page-id-163927621969 #shopify-section-template--29347557572945__slideshow_VjRQcd p {
	text-align: center !important;
	width: 75%;
}

.page-id-163927621969 #shopify-section-template--29347557572945__slideshow_VjRQcd .color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .rte h1 {
	font-size: 44px;
	padding-bottom: 5px;
	text-align: center;
}
.gold-rule.comingtitle {
	bottom: -10px;
	position: relative;
}


.page-id-163272819025 #shopify-section-template--29347557572945__slideshow_VjRQcd .color-scheme-6 .slide__image-container::after {
	width: 100%;

	background-color: #2b2b2bcf;
	
}

.page-id-163272819025 #shopify-section-template--29347557572945__slideshow_VjRQcd .color-scheme-1 .spacing-style.slide__content.color-scheme-6.background-transparent {
	width: auto;
}


.page-id-163272819025 #shopify-section-template--29347557572945__slideshow_VjRQcd .slide__image-container img {
	opacity: 1;
}
.page-id-163272819025 #shopify-section-template--29347557572945__slideshow_VjRQcd p {
	text-align: center !important;
	width: 75%;
}

#shopify-section-template--29347557572945__slideshow_VjRQcd h1 {
	text-align: center;
}

#shopify-section-template--29347557572945__slideshow_VjRQcd .color-scheme-6 .slide__image-container::after {

	width: auto;
	height: 100%;
	background-color: #2b2b2bcf;
	
}

#shopify-section-template--29347557572945__slideshow_VjRQcd .color-scheme-6 .slide__image-container::after {
	width: 100%;
	background-color: #2b2b2bcf;
	
}

#shopify-section-template--29347557572945__slideshow_VjRQcd .color-scheme-1 .spacing-style.slide__content.color-scheme-6.background-transparent {
	width: auto;
}
#shopify-section-template--29347557572945__slideshow_VjRQcd p {
	text-align: center !important;
	width: 75%;
}

/* program trading */
#shopify-section-template--29244470264145__section_9HiQ3P .spacing-style.text-block.rte.text-block--align-center h5 {
  font-size: 40px;
  width: auto;
  background-color: var(--primary-green-dark);
  border: 1px solid;
  padding: 20px;
  border-radius: 50%;
  color: #f2ede5;
}
#shopify-section-template--29244470264145__section_9HiQ3P .rte.text-block--align-center h4 {
  padding: 10px 0px;
}
#shopify-section-template--29244470264145__section_9HiQ3P .border-style.custom-section-content {
  background-color: #f2ede5;
  padding: 70px 0px;
}
.spacing-style.text-block.text-block--AVW9tVjZhb2JEMmRlL__text_LMYFAW.rte p {
  padding-right: 50px;
}
#shopify-section-template--29244470264145__section_9HiQ3P .rte p {
  width: 80%;
}
.spacing-style.text-block.text-block--AYzZKc09wNG03cmNzY__text_xfRULQ.rte h3 {
  font-family: Baskervville;
  font-weight: 400;
  text-align: center;
  padding-right: 20px;
  color: #023430;
  font-size: 27px;
}
.spacing-style.text-block.text-block--AemF6bTFuenc0Y1E4R__text_RJ8LtR.rte.text-block--align-left.text-block--full-width {
  padding: 0px !important;
  position: relative;
  top: -5px;
}
#shopify-section-template--29244470264145__section_rQfDFb {
  padding: 50px 0px 30px;
}
 #shopify-section-template--29244470264145__section_9HiQ3P.spacing-style.text-block h4 {
  font-size: 20px;
  color: var(--primary-green-dark);
}
.spacing-style.text-block.text-block--AVmZVcWZ2OE53RDhRc__text_WDhzxy.rte.text-block--align-center h5 {
  padding: 20px 24px !important;
}
.banner-inner .banner-flex-box {
	min-height: 430px;
	justify-content: flex-end !important;
}
#shopify-section-template--29244470264145__section_9HiQ3P .spacing-style.text-block.h6 p {
	position: absolute;
	top: 0px;
	border-righ: 1px dashed #fff;
	font-size: 0px;
	border-bottom: 2px dashed var(--primary-green-dark);
	height: 50px;
	padding: 0px 470px !important;
	display: inherit;
	right: -240px;
	z-index: -1;
}

/* end progam trading */


.menu-list__list-item:nth-child(6) .menu-list__submenu.color-scheme-matches-parent{
	display: none;
}
.sc-djVWQC.gSkqPQ.pf-109_ {
	border-right: 2px solid #fff !important;
}
.sc-kpKSlO.brELaQ.pf-120_ {
	margin-top: 20px;
}
.size-style.button.button--AK2JKb3FLdGpOcUNhY__button_qdEVe6 {
	display: none;
}
#shopify-section-template--29392386261329__section_9HiQ3P .group-block-content .group-block .group-block-content {
  border-right: 1px solid var(--primary-green-dark);
  min-height: 120px;
}
#shopify-section-template--29392386261329__section_9HiQ3P .group-block-content .group-block:last-child .group-block-content:last-child{
  border-right: 0px solid var(--primary-green-dark);

}
#shopify-section-template--29392386261329__section_9HiQ3P p strong{
  font-size: 17px;
  font-weight: 400 !important;
}
#shopify-section-template--29392386261329__section_9HiQ3P p {
  font-size: 40px;
  color: var(--primary-green-dark);
}
.spacing-style.text-block.text-block--AVW9tVjZhb2JEMmRlL__text_LMYFAW.rte p a:hover {
  color: var(--primary-green-dark);
}
#shopify-section-template--29392386261329__section_rQfDFb {
  padding-top: 50px;
}
#shopify-section-template--29392386261329__section_QMV7BC h6 {
  position: relative;
  color: transparent;
}
#shopify-section-template--29392386261329__section_QMV7BC h6{
content: "";
  display: inline-block;
  width: 40px;
  height: 1.3px;
  background-color: #c6b049;
  margin-right: 10px;
  vertical-align: middle;
}
#shopify-section-template--29392386261329__section_QMV7BC h3 {
  position: absolute;
  right: 30px;
  color: var(--primary-green-dark);
  font-size: 60px;
  top: 30px;
}
#shopify-section-template--29392386261329__section_QMV7BC .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content {
  /* border: 1px solid #076054; */
  padding: 60px;
}
#shopify-section-template--29392386261329__section_QMV7BC .group-block .group-block-content .group-block:first-child .group-block-content .group-block .group-block-content {
  border-bottom: 0px;
  border-right: 0px;
}
/* #shopify-section-template--29392386261329__section_QMV7BC .group-block .group-block-content .group-block:first-child .group-block-content .group-block .group-block-content:last-child{
  border-right: 1px solid #076054;
} */
#shopify-section-template--29392386261329__section_QMV7BC .group-block .group-block-content .group-block:first-child .group-block-content .group-block:first-child div {
  border-right: none !important;
}
#shopify-section-template--29392386261329__section_QMV7BC .group-block .group-block-content .group-block:last-child .group-block-content .group-block:first-child div {
  border-right: none !important;
}
#shopify-section-template--29392386261329__section_QMV7BC .group-block .group-block-content .group-block:first-child .group-block-content .group-block .group-block-content:last-child {
  /* border-right: 1px solid #076054; */
  border-bottom: 1px solid var(--primary-green-dark);
}
#shopify-section-template--29392386261329__section_UXfCRY .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column{
  padding: 20% 2% 1% 70%;
}

#shopify-section-template--29392386261329__section_QMV7BC .spacing-style .group-block .group-block-content .group-block:first-child .group-block-content .group-block:first-child {
  border-right: 1px solid var(--primary-green-dark);
}
 
#shopify-section-template--29392386261329__section_QMV7BC .spacing-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block:first-child {
  border-right: 1px solid var(--primary-green-dark);
}
#shopify-section-template--29392386261329__section_9HiQ3P .group-block {
  background-color: #f2ede5;
}
#shopify-section-template--29392386261329__section_9HiQ3P {
  padding: 90px 0px;
}
.header-section:has(> #header-component[sticky="always"]) {
  top: 37px!important;
}
#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 9;
}

#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ .section-background.color-scheme-1 {
	background-color: #2b2b2b;
}
#MainContent {
	padding-top: 40px;
}
#shopify-section-template--29244470264145__section_geNhgT {
  padding: 30px 0px 40px;
}
.spacing-style.text-block.h6 h3 {
  font-family: 'Baskervville';
  font-size: 24px;
  color: #777;
}
#shopify-section-template--29392386261329__section_geNhgT .spacing-style .group-block {
  padding-right: 0px;
}

#shopify-section-template--29015669965137__section_CkbxmG .border-style.custom-section-content .spacing-style .group-block {
  position: relative;
}
#shopify-section-template--29015669965137__section_CkbxmG .border-style.custom-section-content .spacing-style .group-block::after {
  content: " ";
  position: absolute;
  width: 42%;
  left: 0px;
  top: 0px;
  z-index: 1;
  background-color: #00000075;
  height: 100%;
}
.spacing-style.text-block.text-block--AOWNYSEY4UXdsWjRpU__text_rMdMdM.rte.text-block--align-left.text-block--full-width {
  padding-right: 10px;
}
/* career pg */

#shopify-section-template--29396769276241__section_4ej48x .spacing-style. Text-block.rte.text-block--align-left.text-block--full-width {
	width: 70%;
}

#shopify-section-template--29396769276241__section_4ej48x .spacing-style. Text-block.rte.text-block--align-left.text-block--full-width{
width: 70%;
}
 
#shopify-section-template--29396769276241__section_4ej48x .group-block .group-block-content .group-block .group-block-content {
  border-bottom: 0px solid var(--primary-green-dark);
  padding-bottom: 10px;
}
.spacing-style.text-block.text-block--AVW9tVjZhb2JEMmRlL__text_LMYFAW a {
  text-decoration: none;
}

/* career end */
.spacing-style.text-block.text-block--AdjZpS2M3NGY4dG1qd__text_U8Kgex.rte.text-block--align-left.text-block--full-width a {
  text-decoration: none;
}

#shopify-section-template--28917387002193__section_e9emwp .spacing-style .group-block {
  background-color: #f2ede5;
  padding-left: 30px;
}
#shopify-section-template--28917387002193__section_e9emwp .spacing-style.h3 h3 {
  color: #2b2b2b !important;
}
#shopify-section-template--28917387002193__section_e9emwp a {
  text-decoration: none;
}
#shopify-section-template--28917387002193__section_e9emwp .spacing-style.text-block.h6 h3{
  color: #00352f;
  font-size: 20px;
}
.spacing-style.text-block.text-block--AVjZmWG9uTk1IU3lsN__text_T4eYi9.h3.text-block--align-left.text-block--full-width {
  padding: 10px 0px 10px;
}
#shopify-section-template--28917387002193__section_e9emwp .cv-form-wrap {
  padding: 120px 40px !important;
  min-width: 700px;
}
div#shopify-section-template--28917387002193__section_e9emwp .spacing-style.text-block p {
  margin-top: -10px;
  padding-bottom: 20px;
    padding-bottom: 15px;
}
#shopify-section-template--29392386261329__section_geNhgT .spacing-style.text-block.h6 p {
  padding: 0px;
}
#shopify-section-template--29392386261329__section_geNhgT .rte p {
  position: relative;
  top: -10px;
}
#shopify-section-template--29392386261329__section_geNhgT a{
  text-decoration: none;
}
.kitchen-sub-ban h4 {
  font-size: 20px !important;
  margin-bottom: 5px !important;
}

.spacing-style.text-block.text-block--AYWlVUWxwN2Z6Zklkd__text_pcXT7U.rte p {
	margin: 0px !important;
}


/* collection pg section */
#shopify-section-template--29475433611601__section_npp9CV .border-style.custom-section-content, #shopify-section-template--28917387034961__section_npp9CV .border-style.custom-section-content, #shopify-section-template--29428671480145__section_npp9CV .border-style.custom-section-content {
  /* background-color: #00352F;
  padding: 50px 0px 30px;
  margin-top: 40px; */
  background-color: #F2EDE5;
  padding: 20px 0px 0px;
  margin-top: -25px;
}
#shopify-section-template--29475433611601__section_npp9CV p, #shopify-section-template--28917387034961__section_npp9CV p, #shopify-section-template--29428671480145__section_npp9CV p {
  /* color: rgba(255,255,255,.6); */
  /* border-right: 1px solid rgba(200,169,81,.18); */
  border-right: 1px solid #00352F;
  padding-bottom: 8px;
}
.spacing-style.text-block.text-block--AZlJtV0g2b05hVUpUe__text_ndpPcL.rte.text-block--align-center p,.spacing-style.text-block.text-block--AbTBQNGRMNno1UzFoR__text_ndpPcL.rte.text-block--align-center p{
  border-right: 0px solid #00352F !important;

}
#shopify-section-template--29475433611601__section_npp9CV p strong, #shopify-section-template--28917387034961__section_npp9CV p strong, #shopify-section-template--29428671480145__section_npp9CV p strong {
  color: #00352F;
  font-weight: 400;
}
#shopify-section-template--29475433611601__section_npp9CV p em, #shopify-section-template--28917387034961__section_npp9CV p em, #shopify-section-template--29428671480145__section_npp9CV p em {
  /* color: #C8A951; */
  color: #00352F;
  font-style: normal;
}
.spacing-style.text-block.text-block--Ac0hRVStUeVlzZzZ6a__text_4m4iD9.rte.text-block--align-center h3, .spacing-style.text-block.text-block--AUnZtdTBaQXlWQVJ5a__text_4m4iD9.rte.text-block--align-center h3, .spacing-style.text-block.text-block--ATUdYSlhDaWdsZ0dER__text_4m4iD9.rte.text-block--align-center h3 {
  /* color: #fff; */
  display: contents;
  font-size: 24px;
  margin: auto;
}
.sc-iLsJvT.gbBbPZ.pf-13_.pf-heading-1-h3.heading-after {
  padding: 10px 0px 24px !important;
}
.sc-iLsJvT.gbBbPZ.pf-17_.pf-heading-1-h3, .sc-iLsJvT.gbBbPZ.pf-15_.pf-heading-1-h3 {
  position: relative;
  top: -4px;
}
.collection-wrapper.grid.gap-style {
  padding: 0px 30px;
}
/* END collection pg section */



.collection-id-672914178385 #Facet-Details-template--29300399145297__main-filter-p-t-category {
	display: none;
}
.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent p a {
  border-radius: 3px;
  font-size: 16px;
  padding: 8px 20px;
  font-family: 'Futura' !important;
  border: 1px solid #faf5ed;
  background-color: #2b2b2b;
  color: #faf5ed;
  text-decoration: navajowhite;
  display: block;
}
.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent p a:hover {
  background-color: var(--primary-green-dark) !important;
}  
#shopify-section-template--29129494430033__section_4Nia3e, 
#shopify-section-template--29135227781457__section_VdHbEx, 
#shopify-section-template--29135198650705__section_mpLENR, 
#shopify-section-template--29135227814225__section_FgPwMj,
#shopify-section-template--29135198126417__section_74c7p3,
#shopify-section-template--29135167750481__section_NzEkKR {
  padding: 0px 0px 40px;
}
#shopify-section-template--29129494430033__section_4Nia3e .spacing-style.text-block,
#shopify-section-template--29135227781457__section_VdHbEx .spacing-style.text-block,
#shopify-section-template--29135198650705__section_mpLENR .spacing-style.text-block,
#shopify-section-template--29135227814225__section_FgPwMj .spacing-style.text-block,
#shopify-section-template--29135198126417__section_74c7p3 .spacing-style.text-block,
#shopify-section-template--29135167750481__section_NzEkKR .spacing-style.text-block {
    padding-top: 0px;
}
.spacing-style.text-block.text-block--ANkVBSFJnbTF3ZXhrb__text_ndpPcL.rte.text-block--align-center p {
  border: none !important;
}
#shopify-section-template--29129494430033__section_4Nia3e .h3 h3,
#shopify-section-template--29135227781457__section_VdHbEx .h3 h3,
#shopify-section-template--29135198650705__section_mpLENR .h3 h3,
#shopify-section-template--29135227814225__section_FgPwMj .h3 h3, 
#shopify-section-template--29135198126417__section_74c7p3 .h3 h3,
#shopify-section-template--29135167750481__section_NzEkKR .h3 h3 {
  color: var(--primary-green-dark) !important;
  font-size: 24px;
}
#shopify-section-template--29129494430033__section_4Nia3e .spacing-style.text-block.h6 h3,
#shopify-section-template--29135227781457__section_VdHbEx .spacing-style.text-block.h6 h3,
#shopify-section-template--29135198650705__section_mpLENR .spacing-style.text-block.h6 h3,
#shopify-section-template--29135227814225__section_FgPwMj .spacing-style.text-block.h6 h3, 
#shopify-section-template--29135198126417__section_74c7p3 .spacing-style.text-block.h6 h3,
#shopify-section-template--29135167750481__section_NzEkKR .spacing-style.text-block.h6 h3{
font-size: 14px;
  color: #c8a951;
  font-weight: bold;
  padding-top: 15px;
  position: relative;
  top: 8px;
}
.spacing-style.h6 h6 {
  font-size: 17px;
  font-family: 'Futura';
  color: #00352F;
  font-weight: 400;
}
.spacing-style .h3 h2 {
  font-size: 17px;
  font-family: 'Futura';
  padding-top: 0px;
  width: 80%;
  line-height: 1.5;
}
#shopify-section-template--29129494430033__section_4Nia3e .group-block.group-block--height-fill,
#shopify-section-template--29135227781457__section_VdHbEx .group-block.group-block--height-fill,
#shopify-section-template--29135198650705__section_mpLENR .group-block.group-block--height-fill,
#shopify-section-template--29135227814225__section_FgPwMj .group-block.group-block--height-fill,
#shopify-section-template--29135198126417__section_74c7p3 .group-block.group-block--height-fill,
#shopify-section-template--29135167750481__section_NzEkKR .group-block.group-block--height-fill {
  padding: 0px 0px 20px 0px;
}
#shopify-section-template--29135227781457__section_VdHbEx .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content, 
#shopify-section-template--29129494430033__section_4Nia3e .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content, 
#shopify-section-template--29135198650705__section_mpLENR .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content, 
#shopify-section-template--29135227814225__section_FgPwMj .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content, 
#shopify-section-template--29135198126417__section_74c7p3 .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content,
#shopify-section-template--29135167750481__section_NzEkKR .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content{
  border-right: 1px solid #00352F;
}
#shopify-section-template--29135227781457__section_VdHbEx .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .group-block-content, 
#shopify-section-template--29129494430033__section_4Nia3e .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .group-block-content, 
#shopify-section-template--29135198650705__section_mpLENR .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .group-block-content,
#shopify-section-template--29135227814225__section_FgPwMj .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .group-block-content, 
#shopify-section-template--29135198126417__section_74c7p3 .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .group-block-content, 
#shopify-section-template--29135167750481__section_NzEkKR .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .group-block-content {
  border: none;
}
#shopify-section-template--29135227781457__section_VdHbEx .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content .group-block .group-block-content{
  border: none;
}
.spacing-style.text-block.text-block--ATUdYSlhDaWdsZ0dER__text_4m4iD9.rte.text-block--align-center h3 {
  display: contents;
  margin: auto;
  font-size: 24px;
}
/* .icons-why-box svg:hover {
  stroke: #00352F !important;
} */

#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content,
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content{
  padding: 0px;
  margin: 0px;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul{
  padding: 0px;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li {
  list-style: none;
}
#shopify-section-template--29244362162513__section_njF8Qb 
.group-block .group-block-content 
.group-block:nth-child(2) 
.group-block-content .group-block 
.group-block-content ul, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content 
.group-block:nth-child(2) 
.group-block-content .group-block 
.group-block-content ul, #shopify-section-template--29473850098001__section_njF8Qb
 .group-block .group-block-content 
.group-block:nth-child(2) 
.group-block-content .group-block 
.group-block-content ul{
  display: flex;
  /* grid-template-columns: repeat(2, 1fr); 2 columns */
  gap: 15px;
  padding: 0;
  list-style: none;
}

#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li {
  border: 1px solid #f2ede5  !important;
  padding: 8px;
  position: relative;
  color: #f2ede5  !important;
  padding: 4px 10px;
  font-size: 14px;
  text-align: center;
}
.spacing-style.text-block.text-block--AbTdsYTBFbkE0d1Zvc__text_M3n7dy.rte, .spacing-style.text-block.text-block--AVGw1Y3dnU21OOHVyT__text_9tKThH.rte{
  opacity: 0.7;
  padding: 0px 0px;
  margin-top: -3px;
}

/* Add "|" after each li text */
/* #shopify-section-template--29244362162513__section_njF8Qb 
.group-block .group-block-content 
.group-block:nth-child(2) 
.group-block-content .group-block 
.group-block-content ul li::after {
  content: " |";
  margin-left: 5px;
} */

/* .icons-why-box {
  display: flex;
  gap: 20px;
} */

.icons-why-box {
  display: flex;
  gap: 20px;
  margin: auto !important;
    margin-bottom: auto;
  width: fit-content;
  margin-bottom: 10px !important;
}
.icons-why-box svg {
  width: 35px;
  height: 35px;
  stroke: #00352F;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  top: 8px;
}

.page-interior-designer .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style.color-scheme-3 p strong {
	color: #023430;
}
.spacing-style.text-block.text-block--AbmlBZXhDaWFFMTA2S__text_kXiMMh.rte.text-block--align-center.text-block--full-width p strong {
	color: #023430;
}

#shopify-section-template--28917386871121__product_list_fa6P9H .product-media-container.media-fit.product-media-container--image {
  height: 200px;
}
 /* book a call */
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p strong, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p strong, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p strong{
  display: block;
  font-weight: 400;
  color: var(--primary-green-dark) !important;
}
    #shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .group-block-content, 
    #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child .group-block-content .group-block-content, 
    #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .group-block-content {
      counter-reset: para;
    }

 #shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p, 
 #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p, 
 #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p {
      counter-increment: para;
      padding: 0px 0px 0px 45px;
      margin-bottom: 15px;
      position: relative;
      border-radius: 8px;
      margin: 0px;
    }

    #shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p::after, 
    #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p::after, 
    #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p::after{
      content: counter(para);
      position: absolute;
      left: 1px;
      top: 8px;
        background: transparent;
        color: #023430;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0%;
        font-size: 12px;
        border: 1px solid #023430 !important;
    }
    #shopify-section-template--29244362162513__section_njF8Qb .spacing-style.text-block p a, 
    #shopify-section-template--29244470264145__section_3MF6Dz .spacing-style.text-block p a,
    #shopify-section-template--29473850098001__section_njF8Qb .spacing-style.text-block p a {
      text-decoration: none;
      color: #2B2B2B; !important;
    }
    #shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content, 
    #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child .group-block-content, 
    #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content{
  background-color: #f2ede5 !important;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(3) .group-block-content, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content{
  background-color: #f2ede5 !important;
}
#shopify-section-template--29244362162513__section_njF8Qb iframe, #shopify-section-template--29244470264145__section_3MF6Dz iframe, #shopify-section-template--29473850098001__section_njF8Qb iframe{
  min-width: 840px !important;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child div .group-block, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child div .group-block, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child div .group-block {
  padding: 0px 40px;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content h3, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child .group-block-content h3,
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content h3 {
  padding: 10px 0px 0px 40px;
}
.spacing-style.text-block.text-block--AeGRpT0t2WWJzQXI0Y__text_qQhLtt.rte, 
.spacing-style.text-block.text-block--AOVltdmg1TWY0Sm4va__text_kNGyQV.rte, 
.spacing-style.text-block.text-block--AR1RkVllmL3h3ZXlEV__text_qQhLtt.rte {
  padding-bottom: 10px;
}
#shopify-section-template--29244362162513__section_njF8Qb .spacing-style.rte, 
#shopify-section-template--29244470264145__section_3MF6Dz .spacing-style.rte, 
#shopify-section-template--29473850098001__section_njF8Qb .spacing-style.rte{
  --max-width: auto !important;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child div .group-block .group-block-content, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child div .group-block .group-block-content,
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child div .group-block .group-block-content{
  background-color: transparent !important;
  color: #023430;
  padding: 0px;
  margin: 0px;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content{
  background-color: #00352f !important;
  color: #f2ede5;
  padding: 10px 40px 14px;
  margin: 0px 0px;
}

#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(3) .group-block-content, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content{
    background-color: #f2ede5 !important;
  color: #f2ede5;
  padding: 10px 40px;
  margin: 0px;
  width: 110% !important;
  overflow: hidden !important;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content .group-block .group-block-content, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(3) .group-block-content .group-block .group-block-content, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content .group-block .group-block-content{
  padding: 0px;
  color: #023430;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content h4, 
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content h3,
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content h4,
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content h4,
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content h3{
  color: #f2ede5;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content h4, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content h4, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content h4{
  display: ruby;
  color: #f2ede5;
}
.spacing-style.text-block.text-block--Admt3SEZKMUIwbjd4Y__text_d9QwNn.h6 h3 {
  color: #f2ede5;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content .group-block .group-block-content, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(3) .group-block-content .group-block .group-block-content, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content .group-block .group-block-content {
  color: var(--primary-green-dark) !important;
}

/* end book a call */



/* custome code product img */
    .product-information__grid:not(.product-information__grid--half,.product-information--media-none).product-information--media-left {
        grid-template-columns: 3fr 2fr !important;
    }


.pills__pill {
  &:hover {
    --pills-pill-background-color: #00352FF0 !important;
    color: #f2ede5 !important;
  }
}
  .pills__pill > .svg-wrapper {
  --close-icon-opacity: 1;
  --icon-stroke-width: 1px;
  color: #00352FF0 !important;
  opacity: 1 !important;
}
.checkbox__input {
  &:checked + .checkbox__label .icon-checkmark {
    background-color: #00352F;
    border-color: #00352F;
  }
}
.checkbox__label {
  margin: 4px 0px !important;
}
.checkbox__label-text{
  font-size: 17px !important;
  color: #2B2B2B !important;
}
.checkbox__label-text {
  color: #00352F !important;
}
.facets .checkbox:not(.checkbox--disabled):hover .checkbox__label-text {
  color: #00352F !important;
}

/* our story */
.spacing-style.text-block.text-block--AMERtQ3NEaE9nT0Z2W__text_7xTBNn.rte.text-block--align-center.text-block--full-width h4, .spacing-style.text-block.text-block--AbjM2VzI0NjBhRTYzR__text_pQBTK4.rte.text-block--align-center h4 {
  font-size: 30px;
  width: 50%;
  line-height: 1.6;
  padding: 20px 0px;
  color: var(--primary-green-dark) !important;
  font-style: italic;
}

 .spacing-style.text-block.text-block--AbjM2VzI0NjBhRTYzR__text_pQBTK4.rte.text-block--align-center h4 strong {
  color: #c8a951 !important;
 }

.spacing-style.text-block.text-block--AVG1DZHpQQ1FSdGtUY__text_RJ8LtR.rte.text-block--align-center.text-block--full-width p {
  width: 50%;
}
.spacing-style.text-block.text-block--AVG1DZHpQQ1FSdGtUY__text_RJ8LtR.rte.text-block--align-center.text-block--full-width p strong {
  /* color: var(--primary-green-dark) !important; */
}
#shopify-section-template--29451784356177__section_z8ydUW .border-style.custom-section-content {
  background-color: #f2ede5;
  padding: 0px 0px 0px 0px;
}
.spacing-style.text-block.text-block--AVE5QUkp1V0FwcDFpV__text_kpGhcr.rte.text-block--align-left.text-block--full-width p a {
  text-decoration: none;
}
#shopify-section-template--29451784356177__section_z8ydUW .border-style.custom-section-content .spacing-style .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content {
  padding: 180px 60px 0px 60px;
}
#shopify-section-template--29451784356177__section_z8ydUW .border-style.custom-section-content .spacing-style .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content  .group-block .group-block-content {
  padding: 0px 0px 0px 0px;
}
.spacing-style.text-block.text-block--ASHFTZHdwRjNjdTZtb__text_hd8hTP.rte h3 {
  width: 210px;
}
#shopify-section-template--29451784356177__section_QMV7BC {
  padding-bottom: 70px;
}
.page.page-our-story.page-id-164253532497 .h6 h3 {
  font-size: 14px;
  color: #c8a951;
  font-weight: bold;
  padding-top: 15px;
  /* position: relative;
  top: 8px; */
}
.page.page-our-story.page-id-164253532497 .spacing-style.text-block h4 {
  color: #00352F;
  font-size: 24px;
}
.spacing-style.text-block.text-block--AbjM2VzI0NjBhRTYzR__text_pQBTK4.rte.text-block--align-center.text-block--full-width h4 {
  width: 80%;
}
.spacing-style.text-block.text-block--ARFdMRklrRnNSZkZXb__text_Mcah6h.rte.text-block--align-center.text-block--full-width p {
  width: 47%;
}
#shopify-section-template--29451784356177__section_QMV7BC h3 {
  color: var(--primary-green-dark);
  font-size: 60px;
}
#shopify-section-template--29451784356177__section_QMV7BC .group-block .group-block-content .group-block .group-block-content .group-block{
  border-right: 1px solid var(--primary-green-dark);
}
#shopify-section-template--29451784356177__section_QMV7BC .group-block .group-block-content .group-block .group-block-content .group-block:last-child {
  border: none !important;
}
#shopify-section-template--29451784356177__section_geNhgT .border-style.custom-section-content {
  background-color: var(--primary-green-dark);
  color: #f2ede5 !important;
  padding: 70px 30px;
}
#shopify-section-template--29451784356177__section_geNhgT .border-style.custom-section-content h3{
  color: #f2ede5 !important;
}
.spacing-style.text-block.text-block--AclVqWHJIeElmRW03K__text_MAkjzL.rte ul li {
  border-bottom: 1px solid;
  padding: 15px 0px;
}
#shopify-section-template--29451784356177__section_N97wfP {
  padding-bottom: 0px;
}
#shopify-section-template--29451784356177__section_AP7eAU {
  padding: 70px 0px 0px;
}
#shopify-section-template--29451784356177__section_CmR7wb .group-block .group-block-content .group-block:first-child .group-block-content .group-block {
  border-right: 1px solid;
  border-bottom: 1px solid;
  padding: 0px 30px 30px;
}
#shopify-section-template--29451784356177__section_CmR7wb .group-block .group-block-content .group-block:last-child .group-block-content .group-block{
    border-right: 1px solid;
  padding: 0px 30px 30px;
}
#shopify-section-template--29451784356177__section_CmR7wb .group-block .group-block-content .group-block .group-block-content .group-block:last-child {
  border-right: none !important;
}
#shopify-section-template--29451784356177__section_CmR7wb .rte .rte, #shopify-section-template--29451784356177__section_CmR7wb h6 {
  display: none;
}
#shopify-section-template--29451784356177__section_xF87pE .spacing-style.text-block p em {
  border: 1px solid #000;
  padding: 0px 0px 6px 0px;
  border-radius: 50% !important;
  display: grid;
  width: 40px;
  height: 40px;
  margin: auto;
  color: #00352F;
  align-content: end;
  font-style: initial;
}
#shopify-section-template--29451784356177__section_xF87pE .spacing-style.text-block p strong {
  color: #00352F;
  font-weight: 400;
  padding-top: 4px;
}
.spacing-style.text-block.text-block--AMUFZRU0yS1d6UW1GR__text_nmEi8f p {
  width: 50%;
  margin-bottom: 20px;
}
#shopify-section-template--29451784356177__section_xF87pE .group-block-content .spacing-style.text-block p {
  /* display: grid;
  gap: 1px; */
  width: 70%;
}
#shopify-section-template--29451784356177__section_xF87pE .group-block-content .spacing-style.text-block {
  border-right: 1px solid;
  border-bottom: 1px solid;
  padding: 20px 0px;
}
.spacing-style.text-block.text-block--AYlh0UVZia205LzA3R__text_tPmeWL.rte.text-block--align-center.text-block--full-width, .spacing-style.text-block.text-block--AZE54emFTWk94SVVoc__text_Mx9UrX.rte.text-block--align-center.text-block--full-width {
  border-right: none !important;
}

#shopify-section-template--29451784356177__section_xF87pE .group-block .group-block-content .group-block:last-child .group-block .group-block-content .spacing-style {
  border-bottom: none !important;
}
.spacing-style.text-block.text-block--AZE54emFTWk94SVVoc__text_Mx9UrX.rte.text-block--align-center.text-block--full-width {
  border-right: none !important;
}
#shopify-section-template--29451784356177__section_CmR7wb .border-style.custom-section-content {
  background-color: #f2ede5;
  padding: 70px 30px;
}
.spacing-style.text-block.text-block--AT2hBdGVrUGxiUUtZd__text_J3wEkn.h3.text-block--align-center {
  padding-bottom: 40px;
}
.spacing-style.text-block.text-block--AclVqWHJIeElmRW03K__text_MAkjzL.rte.text-block--align-left {
  padding-left: 70px;
}
.size-style.button.button--ATEFzK3pKNkY2MitNT__button_VDzyFq {
  border-color: #f2ede5 !important;
  background-color: transparent;
  /* color: #f2ede5 !important; */
  color: #2B2B2B !important;
  background-color: #f2ede5 !important;
}
.size-style.button.button--ATEFzK3pKNkY2MitNT__button_VDzyFq:hover {
  color: #2B2B2B !important;
  background-color: #f2ede5 !important;

  background-color: transparent;
  color: #f2ede5 !important;
}
#shopify-section-template--29451784356177__section_QMV7BC h6 {
  display: none;
}
.spacing-style.text-block.text-block--AclVqWHJIeElmRW03K__text_MAkjzL.rte.text-block--align-left ul li:first-child {
  /* border-top: 1px solid; */
}

.page-id-163370336593 .details-content .spacing-style {
	--max-width: unset !important;
}
/* end our story */

.page-id-163370336593 .details .spacing-style.text-block.rte {
  --max-width: unset !important;
}

.page-id-163370336593 .details-content .spacing-style.text-block.rte{
    --max-width: unset !important;
}
.spacing-style.text-block.text-block--AVG1DZHpQQ1FSdGtUY__text_RJ8LtR.rte.text-block--align-center.text-block--full-width p strong{
  color: var(--primary-green-dark) !important;
  font-weight: 400;
  font-family: 'Baskervville';

}
.spacing-style.text-block.text-block--AUTdIYlFScERBRTNNS__text_VVyXHY.rte.text-block--align-left.text-block--full-width p em {
  display: block;
  font-style: normal;
}

/* last menu services */
#submenu-10 .mega-menu__list.list-unstyled {
  display: block;
}
  #submenu-10 {
  width: 1400px !important;
  z-index: 999;
  margin: auto;
  position: relative;
}
#submenu-10 .mega-menu.section {
  width: auto;
  padding-left: 82%;
} 
#submenu-10 {
  text-transform: uppercase;
}
#submenu-10 .mega-menu__column div:first-child a span {
  font-weight: 400 !important;
  font-family: 'Futura' !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
}
#submenu-10 .mega-menu .mega-menu__grid .mega-menu__list li:last-child ul li span {
  width: 130px;
}

/* service pg */

.spacing-style.text-block.text-block--ASnM0SGtqQWRJSGxUU__text_ap4fbe h3 strong {
  display: block;
  font-weight: normal;
  font-family: Baskervville;
  line-height: 1.6;
}
.spacing-style.text-block.text-block--AWlhwTzFROVVBYktZS__text_BieHHB p {
  width: 42%;
  padding-bottom: 30px;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block .group-block-content .group-block:first-child {
  background-color: #00352f;
}
#shopify-section-template--29500138193233__section_N97wfP .spacing-style.text-block.h6 h3, #shopify-section-template--29500138193233__section_jy4Lnf .spacing-style.text-block.h6 h3 {
	/* color: #c8a951;
  text-transform: uppercase; */
}
#shopify-section-template--29500138193233__section_jy4Lnf .layout-panel-flex {
	gap: 20px;
  display: flex;
  align-items: stretch;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block .group-block-content .group-block:first-child .spacing-style.text-block p {
	color: #fff;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block .group-block-content .group-block:first-child .spacing-style.text-block h2{
	color: #fff;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block .group-block-content .group-block:first-child .spacing-style.text-block ul li{
  	color: #fff;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .spacing-style.text-block p {
	color: #fff;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .spacing-style.text-block h2{
	color: #fff;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .spacing-style.text-block ul li{
  	color: #fff;
}
.size-style.button.button--AcTludWpHQUNaOEQ0a__button_X6WNXW, .size-style.button.button--AcGR3NTdGY1NueFB6U__button_QyMexw {
	border: 1px solid #F2EDE5;
	background-color: #F2EDE5;
	color: #2b2b2b;
  margin: auto 0 0 0 !important;
  text-transform: capitalize;
}
.size-style.button.button--AcTludWpHQUNaOEQ0a__button_X6WNXW:hover, .size-style.button.button--AcGR3NTdGY1NueFB6U__button_QyMexw:hover {
	background-color: #00352f !important;
	color: #f2ede5 !important;
  border: 1px solid #F2EDE5;
}
.service-num span {
	color: #c8a95117;
	font-size: 165px;
	line-height: 0;
	margin: 0 auto;
	display: table;
	position: relative;
	top: -160px;
}
#shopify-section-template--29500138193233__section_N97wfP .spacing-style.text-block.h6 h3::before, #shopify-section-template--29500138193233__section_jy4Lnf .spacing-style.text-block.h6 h3::before{
	content: "";
	/* display: inline-block;
	width: 30px;
	height: 1px;
	background-color: #c8a951;
	margin-right: 10px;
	vertical-align: middle;
	margin-top: -4px; */
}
#shopify-section-template--29500138193233__section_jy4Lnf {
	padding: 0px 0;
}
#shopify-section-template--29500138193233__section_jy4Lnf .border-style.custom-section-content {
  background-color: #00352f;
  padding: 80px 30px;
}
#shopify-section-template--29500138193233__section_jy4Lnf .spacing-style.text-block.h3 h3 {
	color: #fff;
}
#shopify-section-template--29500138193233__section_jy4Lnf .spacing-style.text-block p em, #shopify-section-template--29500138193233__section_jy4Lnf .spacing-style.text-block p {
color: #fff; 
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:first-child p em{
color: #2B2B2B !important;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block .group-block-content .group-block:last-child{
  background-color: #f5f2ee;
}
/* #shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block:first-child {
  background-color: #f5f2ee;
  padding: 70px 30px;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block:last-child{
  background-color: #f2ede5;
  padding: 70px 30px;
} */
 #shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child {
  background-color: #00352f;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:first-child {
  background-color: #f5f2ee !important;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content p strong {
  color: #c8a951 !important;
  font-weight: normal;
  display: block;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .spacing-style.text-block.h3 p {
  border: 1px solid #c8a951;
  padding: 10px;
  width: 100%;
  margin: auto;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block .group-block-content .group-block {
  padding: 60px !important;
}
#shopify-section-template--29500138193233__section_jy4Lnf .group-block .group-block-content .group-block {
	border: 1px solid #c8a95133;
	/* min-height: 430px; */
	padding: 50px;
  margin-top: 60px;
	background-color: #ffffff17;
}
#shopify-section-template--29500138193233__section_jy4Lnf .group-block .group-block-content .group-block p strong{
  color: #c8a951;
}
#shopify-section-template--29500138193233__section_jy4Lnf .custom.custom-typography.custom-font-size.custom-color p {
	font-size: 60px;
	color: #c8a9513d;
	font-family: 'Futura';  
}
#shopify-section-template--29500138193233__section_jy4Lnf .group-block .group-block-content .group-block:hover .icon-box {
	border: 1px solid #c8a951;
  width: fit-content;
}
.spacing-style.text-block.text-block--Aa2FCRGhPUEs5TUVTQ__text_cRJ8QT.h4 h3, .spacing-style.text-block.text-block--AN0N5V3lWbDhmK05Lc__text_FCXE8D.h4 h3 {
	color: #fff;
	padding: 15px 0;
}
.icon-box i {
	color: #c8a951;
	font-size: 25px;
}
.icon-box {
	border: 1px solid #c8a9513d;
	padding: 12px 15px 10px 15px;
  width: fit-content;
}
#shopify-section-template--29500138193233__section_jy4Lnf .group-block{
  /* margin-top: 30px; */
}
#shopify-section-template--29500138193233__section_N97wfP 
.group-block-content {
  display: flex;
  align-items: stretch; /* key line */
}

#shopify-section-template--29500138193233__section_N97wfP 
.group-block .group-block-content .group-block {
  flex: 1; /* both take equal width & height */
  display: flex;
  flex-direction: column;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .spacing-style.text-block.h3 p em {
  font-style: normal !important;
  padding-top: 6px;
  display: block;
}
.spacing-style.text-block.text-block--AU21TbVBFWTJaY3o2N__text_jmr98Y.rte em, .spacing-style.text-block.text-block--ASUFzRUhxeVYycityd__text_eL7YEA.rte em{
  color: #c8a951;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block .group-block-content .group-block ul {
  padding: 0px !important;
  list-style: none;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block .group-block-content .group-block ul li::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #c8a951;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -4px;
  position: absolute;
  left: 0px;
  top: 20px;
  z-index: 9999;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block .group-block-content .group-block ul li {
  padding-left: 35px;
  padding-bottom: 11px;
  position: relative;
}
#shopify-section-template--29500138193233__section_geNhgT .group-block-content .spacing-style p strong {
  display: block;
  Color: #c8a951;
  padding: 10px;
  font-weight: normal;
}

#shopify-section-template--29500138193233__section_9HiQ3P {
  padding: 0px 0px;
}

#shopify-section-template--29500138193233__section_9HiQ3P .border-style.custom-section-content {
  background-color: #f5f2ee !important;
  padding: 70px 0px;
}
#shopify-section-template--29500138193233__section_9HiQ3P .spacing-style.text-block h5 {
  background-color: #f5f2ee !important;
  width: 80px;
  height: 80px;
  border: 1px solid #c8a951;
  border-radius: 50%;
  color: #c8a951;
  font-size: 20px;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center;
}
#shopify-section-template--29500138193233__section_9HiQ3P .group-block-content .group-block .group-block-content .rte.text-block--align-center p {
  width: 90%;
}
#shopify-section-template--29500138193233__section_9HiQ3P .group-block-content .group-block .group-block-content .rte.text-block--align-center h5::after {
  content: "";
  border-bottom: 1px solid #c8a951;
  position: absolute;
  left: 150px;
  z-index: -2;
  width: 240px;
  height: 0px;
  top: 38px;
  margin-bottom: 20px;
}
#shopify-section-template--29500138193233__section_9HiQ3P .group-block-content .group-block:last-child .rte.text-block--align-center h5::after {
  display: none;
}
#shopify-section-template--29500138193233__section_geNhgT {
  padding-top: 70px;
}
#shopify-section-template--29500138193233__section_9HiQ3P .group-block-content .group-block:hover h5 {
  background-color: #f1ede2 !important;
}
#shopify-section-template--28917386871121__collection_list_q69iNL .collection-card__link {
  cursor: auto;
  pointer-events: none !important;
}

/* home product section */
#shopify-section-template--28917386871121__section_TBhpiD a.contents.user-select-text p {
  font-weight: normal;
  min-height: 60px;
}
#shopify-section-template--28917386871121__section_TBhpiD .product-card__content {
  border: 1px solid #D3C6AE;
  padding: 15px 15px 0px;
}
#shopify-section-template--28917386871121__section_MgzGjn {
  padding-bottom: 10px;
  padding-top: 50px;
}
.pagination__link.pagination__link--page.pagination__link--current {
  color: #f2ede5 !important;
} 
  .p-color-box .pf-heading-1-h4, .white-bg-sec .pf-heading-1-h4 {
    padding-bottom: 5px;
  }

  #shopify-section-template--29015669965137__section_9GaR4C a {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
#shopify-section-template--29015669965137__section_9GaR4C .custom.custom-typography.custom-font-size.custom-color p{
  padding-bottom: 70px !important;
}
.spacing-style.text-block.text-block--AVlFSSTZzQlZhc1lXS__text_b7RRay.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  width: 98%;
  margin-bottom: 35px;
}
/* #shopify-section-template--29015669965137__section_9GaR4C .group-block-content {
  display: flex;
  align-items: stretch;
} */
 .size-style.button.button--ATVBKOWZYdkMyK293Z__button_Ujtgt6 {
  bottom: 22px !important;
}
.pf-flex-section a:hover {
  background-color: var(--primary-green-dark) !important;
  color: #FAF5ED !important;
}
.pf-flex-section a {
  background-color: #FAF5ED !important;
  color: #2B2B2B !important;
  border: 1px solid #2B2B2B !important;
}
.product-information__media .slideshow-control.slideshow-control--previous.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent.flip-x:hover {
  background-image: url('/cdn/shop/files/Button_Carousel.png?v=1772712102');
}
.product-information__media .slideshow-control.slideshow-control--previous.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent.flip-x:hover {
  background-image: url('/cdn/shop/files/Button_Carousel.png?v=1772712102');
}
button.slideshow-control.slideshow-control--next.slideshow-control--style-chevron.button.button-unstyled.button-unstyled--transparent:hover {
  background-image: url('/cdn/shop/files/State_Hover.png?v=1772709089') !important;
  transform: rotate(0deg);
}

/* 10th menu */

/* #shopify-section-sections--28917387264337__header_section .menu-list li:nth-child(10) .mega-menu__list.list-unstyled li:nth-child(1) a span.wrap-text {
  color: #023430;
  cursor: pointer !important;
} */
 #submenu-10 ul li div ul li a, #submenu-10 ul li div ul li a span {
  /* cursor: default !important;
  pointer-events: none !important;*/
}
#submenu-10 ul li:nth-child(2) ul li a{
  cursor: default !important;
  pointer-events: none !important;
}
.cv-recaptcha-wrap {
  margin: auto !important;
  width: fit-content !important;
}
#shopify-section-template--29347557572945__slideshow_VjRQcd slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column div {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* #shopify-section-template--29204643512657__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .rte p {
  display: none;
} */


/* service pg end */
  /* var(--primary-green-dark) */


/*.product-media {
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none; 
}

.product-media img {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
*/
#shopify-section-template--29244362162513__section_njF8Qb .border-style.custom-section-content .spacing-style .group-block {
  --size-style-width: auto !important;
}
#shopify-section-template--29244470264145__section_3MF6Dz .border-style.custom-section-content .spacing-style .group-block {
  --size-style-width: auto !important;
}
  
zoom-dialog dialog {
  &[open] {
    opacity: 1;
    margin: auto !important;
    background-color: #fff !important;
  }
}
.dialog-zoomed-gallery {
  width: 1400px !important;
  margin: auto !important;
}
.dialog-thumbnails-list.list-unstyled {
  width: 10% !important;
  margin: auto !important;
}
.dialog-zoomed-gallery__dialog .close-button {
  right: 5% !important;
}
#shopify-section-template--29244470264145__section_3MF6Dz .cv-hs-col iframe {
  min-height: 700px !important;
}
.slideshow-controls__thumbnails-container {
  mask-image: none !important;
}

.spacing-style.text-block.text-block--AZXZZKzNoZDIxNk9CN__text_CXRzPm.rte.text-block--align-left.text-block--full-width p a {
	background-color: #2b2b2b;
	color: #f2ede5;
	border: 1px solid #f2ede5 !important;
	border-radius: 3px;
	font-size: 16px;
	padding: 8px 20px 8px;
	font-family: 'Futura' !important;
	text-decoration: none;
	margin-right: 10px;
}
#shopify-section-template--29710972551505__section_bCkCFj a {
  margin-top: 10px;
}

#shopify-section-template--29710972551505__section_bCkCFj .spacing-style.text-block p:last-child {
  padding-right: 70px;
}
.spacing-style.text-block.text-block--AMFY2ck9qaFVRMHRlV__text_Wwfxey.rte.text-block--align-left.text-block--full-width {
  padding-right: 40px;
}
#shopify-section-template--29710972551505__slideshow_PLiYPn .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
  padding-right: 0px !important;
}
.page-id-165656822097 p strong, 
.page-id-165719441745 p strong,
.page-id-165754175825 p strong,
.page-id-165824921937 p strong,
.page-id-165754372433 p strong {
  margin-top: 0;
  font-family: Baskervville;
  font-weight: 400;
  text-align: center;
  font-size: 24px;
  color: #777;
  margin-bottom: 6px;
}
.page-id-165656822097 .text-block--align-center p, 
.page-id-165719441745 .text-block--align-center p,
.page-id-165754175825 .text-block--align-center p,
.page-id-165824921937 .text-block--align-center p,
.page-id-165754372433 .text-block--align-center p{
  font-size: 24px !important;
  color: #2b2b2b !important;
  width: 80% !important;
}

#shopify-section-template--29866157539665__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2,
#shopify-section-template--29884596715857__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2,
#shopify-section-template--29905634525521__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2,
#shopify-section-template--29907489489233__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2,
#shopify-section-template--29927734083921__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2{
  padding: 40px 0px;
}
#shopify-section-template--29866157539665__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p,
#shopify-section-template--29884596715857__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p,
#shopify-section-template--29905634525521__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p,
#shopify-section-template--29907489489233__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p,
#shopify-section-template--29927734083921__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p{
  color: #fff !important;
  width: 48% !important;
  font-size: 17px !important;
}
#shopify-section-template--29866157539665__section_ViC4bn{
  padding: 0px;
}
.page-id-165656822097 .content-for-layout .shopify-section:nth-child(even) .border-style.custom-section-content, 
.page-id-165719441745 .content-for-layout .shopify-section:nth-child(even) .border-style.custom-section-content,
.page-id-165754175825 .content-for-layout .shopify-section:nth-child(even) .border-style.custom-section-content,
.page-id-165824921937 .content-for-layout .shopify-section:nth-child(even) .border-style.custom-section-content,
.page-id-165754372433 .content-for-layout .shopify-section:nth-child(even) .border-style.custom-section-content {
  background-color: #faf5ed !important;
  padding: 30px;
}
#shopify-section-template--29866157539665__section_bnm3Db .border-style.custom-section-content, 
#shopify-section-template--29884596715857__section_bnm3Db .border-style.custom-section-content,
#shopify-section-template--29905634525521__section_bnm3Db .border-style.custom-section-content,
#shopify-section-template--29907489489233__section_bnm3Db .border-style.custom-section-content,
#shopify-section-template--29927734083921__section_bnm3Db .border-style.custom-section-content{
  background-color: transparent !important;
  padding: inherit;
}
.page-id-165656822097 .text-block--align-left.h4 p, 
.page-id-165719441745 .text-block--align-left.h4 p,
.page-id-165754175825 .text-block--align-left.h4 p,
.page-id-165824921937 .text-block--align-left.h4 p,
.page-id-165754372433 .text-block--align-left.h4 p{
	margin-top: 5px !important;
	margin-bottom: 0 !important;
	font-family: Baskervville !important;
	font-weight: 400 !important;
	font-size: 30px !important;
	color: var(--primary-green-dark) !important;
}

.page-id-165656822097 .content-for-layout .shopify-section:nth-child(odd) .border-style.custom-section-content, 
.page-id-165719441745 .content-for-layout .shopify-section:nth-child(odd) .border-style.custom-section-content,
.page-id-165754175825 .content-for-layout .shopify-section:nth-child(odd) .border-style.custom-section-content,
.page-id-165824921937 .content-for-layout .shopify-section:nth-child(odd) .border-style.custom-section-content,
.page-id-165754372433 .content-for-layout .shopify-section:nth-child(odd) .border-style.custom-section-content{
  padding: 30px;
}
#shopify-section-template--29884596715857__section_ViC4bn,
#shopify-section-template--29905634525521__section_ViC4bn,
#shopify-section-template--29927734083921__section_ViC4bn,
#shopify-section-template--29907489489233__section_ViC4bn{
  padding-top: 0px;
}
.page-id-165656822097 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child,
.page-id-165719441745 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child,
.page-id-165754175825 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child,
.page-id-165824921937 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child,
.page-id-165754372433 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child {
  padding-top: 0px;
}

.page-id-165656822097 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child .group-block-content .group-block,
.page-id-165719441745 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child .group-block-content .group-block,
.page-id-165754175825 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child .group-block-content .group-block,
.page-id-165824921937 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child .group-block-content .group-block,
.page-id-165754372433 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex .group-block:first-child .group-block-content .group-block{
  padding-top: 0px;
}
.page-id-165656822097 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex,
.page-id-165719441745 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex,
.page-id-165754175825 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex,
.page-id-165824921937 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex,
.page-id-165754372433 .content-for-layout .shopify-section:nth-child(2n) .border-style.custom-section-content .spacing-style.layout-panel-flex{
  padding-top: 30px !important;
}

.collection.collection-bathroom .product-media__image {
  object-fit: fill !important;
}
.spacing-style.text-block.text-block--AbVdTL010Vm5mZ2NhZ__text_zkRhD9.rte.text-block--align-center.text-block--full-width {
  padding: 12px 0px;
}
#shopify-section-template--29392386261329__section_gYBcxF{
  display: none !important
}

#submenu-7 {
  display: none;
}
#shopify-section-template--29244362162513__section_njF8Qb iframe {
  height: auto !important;
}
#shopify-section-template--29710972551505__section_bCkCFj a {
  display: none;
}
#Details-menu-drawer-menu-item-7 #link-wall-panels {
  display: none;
}
#Details-menu-drawer-menu-item-7 .svg-wrapper.icon-caret.icon-caret--forward {
  display: none;
}

/*RESPONSIVE*/

@media screen and (max-width: 3080px) {

}
@media screen and (max-width: 2880px) {
.menu-btn {
  right: 19%;
}
.floating-icons {
  position: fixed;
  right: 20%;
  top: 39%;
}

}
@media screen and (max-width: 1921px) {
div#shopify-section-template--28917386871121__product_list_fa6P9H .contents.user-select-text .spacing-style.text-block.rte.text-block--align-left p {
  width: 70% !important;
}
.menu-btn {
  right: 13%;
}
.floating-icons {
  right: 14%;
    top: 35%;
}
}
@media screen and (max-width: 1697px) {
  .menu-btn {
    right: 8%;
  }
   .floating-icons {
    right: 9.4%;
    top: 31%;
  }
}
@media screen and (max-width: 1680px) {
.menu-btn {
  right: 6.8%;
}
 .floating-icons {
    right: 8%;
  }
}

@media screen and (max-width: 1600px) {

  #shopify-section-template--28917386871121__section_4AnkxM .section.section--page-width.color-scheme-1 .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper {
  gap: 120px;
  padding: 0px inherit;
}
.img-box-right{
  width:30% !important;
  height:700px;
}
  
   .menu-btn {
    right: 50px;
  }
  .floating-icons {
    right: 75px;
    top: 28%;
  }
  #shopify-section-template--29710972551505__section_bCkCFj .spacing-style.text-block p:last-child {
  padding-right: 30px;
}
#shopify-section-template--29710972551505__custom_liquid_9VYgiU .group-block-content .spacing-style.text-block p {
  padding: 0px 40px;
}

}
 


@media screen and (max-width: 1480px) {
#shopify-section-template--28917386871121__slideshow_GYGrVh slideshow-container .spacing-style.slide__content.color-scheme-6.background-transparent {
  width: 100% !important;
    margin: 40px auto 0px;
    padding: 0px 30px !important;
}
#shopify-section-template--28917386871121__section_jrj9tk .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding: 6% 27%;
}
  .menu-btn {
    right: 30px;
  }

  .spacing-style.slide__content.color-scheme-6.background-transparent{
    height: auto;
  }
.spacing-style.text-block.text-block--AT0RKVTR5dWxNejZTd__text_4wGHgJ.rte.text-block--align-left.text-block--full-width {
  padding-right: 30px;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child div {
  background-color: #faf5ed;
  padding: 0px 10px 14px !important;
  width: auto;
}
#shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child div {
  width: auto;
}
.spacing-style.text-block.text-block--AaVM1NEo2TDNJRVNid__text_b7RRay.rte.text-block--align-center.text-block--full-width {
  width: 100%;
}
.size-style.button.button--ATmNPOThkSnFFeVZoN__button_Ujtgt6 {
  margin-top: 25px !important;
}
  .floating-icons {
    right: 55px;
    top: 25%;
  }
  
}
@media screen and (max-width: 1440px) {
.dialog-zoomed-gallery {
  width: 90% !important;
  margin: auto !important;
}
  .page.page-our-story.page-id-164253532497 .spacing-style.text-block h4 {
  font-size: 20px;
}

  #shopify-section-template--29244362162513__section_njF8Qb iframe, #shopify-section-template--29244470264145__section_3MF6Dz iframe, #shopify-section-template--29473850098001__section_njF8Qb iframe {
  min-width: 740px !important;
}
#shopify-section-template--29451784356177__section_z8ydUW .border-style.custom-section-content .spacing-style .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content {
  padding: 60px 40px 0px 50px;
}
#shopify-section-template--29451784356177__section_CmR7wb .group-block .group-block-content .group-block:first-child .group-block-content .group-block {
  padding: 0px 40px 30px;
}
.spacing-style.text-block.text-block--AYStLajQ5STdLa1B5S__text_X4UqnW.rte.text-block--align-center.text-block--full-width {
  width: 78%;
}
#shopify-section-template--29015669965137__section_CkbxmG .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding: 7% 60% 1% 0%;
}
#shopify-section-template--29015669965137__section_CkbxmG .background-image-container img {
  opacity: 0;
}
#shopify-section-template--29015669965137__section_CkbxmG .background-image-container {
  background-image: url('/cdn/shop/files/Mega_Picture_2.png?v=1772796323');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#shopify-section-template--29015669965137__section_xmgN4G .background-image-container {
  background-image: url('/cdn/shop/files/Mega_Picture_3.png?v=1772796323');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#shopify-section-template--29015669965137__section_HYQDct .background-image-container {
  background-image: url('/cdn/shop/files/Mega_Picture_4.png?v=1772796323');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* .background-image-container::after {
  content: "";
  position: absolute;
  width: 55%;
  background-color: #2b2b2bad;
  z-index: 1 !important;
  left: 0px;
  right: 0px;
  height: 100%;
  top: 0px;
} */
.border-style.custom-section-content {
  position: relative;
  z-index: 2;
}
#shopify-section-template--29015669965137__section_HYQDct .background-image-container::after{
  left: auto;
  height: 98%;
  top: 6px;
}
#shopify-section-template--29015669965137__section_xmgN4G .background-image-container::after{
  height: 98%;
  top: 6px;
}
#shopify-section-template--29015669965137__section_xmgN4G .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
  padding: 7% 60% 1% 0%;
}
#shopify-section-template--29015669965137__section_HYQDct .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
  padding: 20% 0% 1% 70%;
}
.kitchen-gallery {
  width: auto !important;
    margin: auto;
    padding: 0px 40px;
}
#shopify-section-template--28917386871121__collection_list_q69iNL slideshow-container, #shopify-section-template--28917386871121__featured_blog_posts_dL9JeQ slideshow-container {
  width: 100% !important;
  margin: auto;
  padding: 0px 30px !important;
}

.spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: 128px;
}
/* #shopify-section-template--29015669965137__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column a, #shopify-section-template--29015669965137__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column a {
  margin: 17px auto 20px;
} */

.spacing-style.text-block.text-block--AVlFSSTZzQlZhc1lXS__text_b7RRay.rte.text-block--align-left p {
  min-height: 105px !important;
}
 .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .spacing-style.text-block.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
    min-height: 75px;
  }
 
.banner-inner .pf-flex-section::after {
  width: 58%;
}
.pf-container-1 {
  padding: 0px 40px !important;
}
/* #shopify-section-template--29204643512657__section_4Nia3e .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
  width: 66%;
} */

 #shopify-section-template--28917386871121__slideshow_GYGrVh .slideshow--content-on-media .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .size-style.button-secondary {
  position: relative;
  margin-top: 60px;
 }
 .spacing-style.text-block.text-block--ASmgrNmo1UlhGNjJpO__text_nr8cNF.rte.text-block--align-right.text-block--full-width {
  width: 710px;
}
#shopify-section-template--29392386261329__section_UXfCRY .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding: 20% 2% 1% 50%;
}
/* .size-style.button.button--ATVBKOWZYdkMyK293Z__button_Ujtgt6 {
  margin-bottom: 20px !important;
  margin-top: 10px !important;
} */
}



@media screen and (max-width: 1366px) {
  #shopify-section-template--29710972551505__section_bCkCFj .spacing-style.text-block p:last-child {
  padding-right: 20px;
}
    .header__row.header__row--bottom.color-scheme-1.section.section--full-width-margin.section--page-width.mobile\:hidden .header__columns.spacing-style {
	padding: 10px 0px 10px 0px;
}

  #shopify-section-template--29347557572945__section_4Nia3e .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child{
	/* width: 68%; */
}
#shopify-section-template--29347557572945__section_4Nia3e a {

	right: 6px;

}
#shopify-section-template--29347557572945__section_4Nia3e .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	padding-right: 70px;
}


header .menu-list__list-item a {
  padding: 0px 13px;
}
#shopify-section-sections--28917387297105__section_PUCKjJ .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper.mobile-column {
  gap: 0px;
}
div#shopify-section-template--28917386871121__product_list_fa6P9H .contents.user-select-text .spacing-style.text-block.rte.text-block--align-left p {
  font-size: 16px;
  width: 100%;
}
div#shopify-section-template--28917386871121__product_list_fa6P9H .contents.user-select-text .spacing-style.text-block.rte.text-block--align-left p{
  width: 75%;
}
.product-card .price {
  position: relative;
  right: 0px;
  bottom: 0px;
}
#shopify-section-template--29015669965137__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column a {
  margin: 14px auto 20px;
}
.section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .spacing-style.text-block.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: 100px;
}
.spacing-style.text-block.text-block--AbEdRTTkxUVE5RGkrT__text_ntcX6k.rte.text-block--align-center.text-block--full-width p {
  width: 100%;
}
#shopify-section-template--29204643512657__section_4Nia3e .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding-right: 50px;
}
  #shopify-section-template--29204643512657__section_4Nia3e .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
    /* width: 65%; */
  }
}

@media screen and (max-width: 1330px) {
.image-block.image-block--AUGQzSmlITm5IbzVOe__image_nDJhg4.image-block--height-fit.spacing-style.size-style {
  text-align: end !important;
  display: ruby;
}
.image-block.image-block--AUGQzSmlITm5IbzVOe__image_nDJhg4.image-block--height-fit.spacing-style.size-style img {
  width: auto;
  position: relative;
  right: 0px;
  bottom: 0px;
  text-align: end;
}
#shopify-section-template--28917386871121__collection_list_q69iNL slideshow-container, #shopify-section-template--28917386871121__featured_blog_posts_dL9JeQ slideshow-container {
  width: inherit !important;
}
}
@media screen and (max-width: 1280px) {
  .spacing-style.text-block.text-block--AMFY2ck9qaFVRMHRlV__text_Wwfxey.rte.text-block--align-left.text-block--full-width {
  padding-right: 50px;
}
.spacing-style.text-block.h4 p {
  font-size: 25px;
}
  .header__column.header__column--left {
    display: none !important;
}
#submenu-10 .mega-menu.section {
  width: auto;
  padding-left: 70%;
}
#shopify-section-template--29204643512657__section_4Nia3e .button.button-unstyled.popup-link__button.text-left.spacing-style {
	
	bottom: 10px!important;
	
}
.spacing-style.text-block.text-block--AMERtQ3NEaE9nT0Z2W__text_7xTBNn.rte.text-block--align-center.text-block--full-width h4, .spacing-style.text-block.text-block--AbjM2VzI0NjBhRTYzR__text_pQBTK4.rte.text-block--align-center h4 {
  width: 70%;
}
.spacing-style.text-block.text-block--ARFdMRklrRnNSZkZXb__text_Mcah6h.rte.text-block--align-center.text-block--full-width p {
  width: 60%;
}
.spacing-style.text-block.text-block--AbjM2VzI0NjBhRTYzR__text_pQBTK4.rte.text-block--align-center.text-block--full-width h4 {
  width: 90%;
}
.spacing-style.text-block h4 {
  font-size: 20px;
  line-height: 1.3;
}
#shopify-section-template--29451784356177__section_xF87pE .group-block-content .spacing-style.text-block p {
  width: 90%;
}
#shopify-section-template--29451784356177__section_CmR7wb .group-block .group-block-content .group-block:first-child .group-block-content .group-block {
  padding: 0px 20px 30px;
}
#shopify-section-template--29451784356177__section_z8ydUW .border-style.custom-section-content .spacing-style .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content {
  padding: 20px 28px 0px 60px;
}
#shopify-section-template--29244470264145__section_9HiQ3P .spacing-style.text-block.h6 p {
	padding: 0px 400px !important;
}
  #shopify-section-template--29129494430033__section_jMMFgU .border-style.custom-section-content {
  padding: 20px 30px 30px;
  margin-bottom: 20px;
}
  #shopify-section-template--29123371204945__section_zxbfnn .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  gap: 10%;
}
.spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: 120px !important;
}
.page-width-narrow.card-hover-effect-none.template-page\.melamine-wardrobes.page-163204104529 .gleryimgsec {
  width: auto;
}
  /*Gallery Section css */
  .gleryimgsec {
    width: 100%;
  }
  #shopify-section-template--29150848975185__slideshow_VjRQcd .slideshow-section.spacing-style.section.section--page-width.color-scheme-1.disable-section-top-offset {
	display: block;
}
  #shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content h1{
		font-size:40px;
	}
  .slideshow-section.spacing-style.section.section--page-width.color-scheme-1.disable-section-top-offset {
  display: block;
}
#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ .header-container {
  padding: 0 0px;
}
#shopify-section-sections--28917387264337__custom_liquid_xqxRnR a{
  left: 0px;
}
.header__row.header__row--top.color-scheme-3.section.section--full-width-margin.section--page-width.divider--page-width .header__columns.spacing-style {
  padding: 15px 0px !important;
}
  #shopify-section-template--29150848975185__slideshow_VjRQcd .group-block-content h1{
    	font-size:40px;
  }
  #shopify-section-template--29150848975185__section_AqkiCh .group-block-content {
    z-index: 2;
    width: 100%;
    padding: 20% 1% 1% 50%;
  }
  .section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {  
    line-height: 1.4em;
  }
  #shopify-section-template--29150848975185__section_AqkiCh .group-block-content::after{
     width: 52%;
  }
  .spacing-style.text-block.text-block--AT25BdTZOUzExaHV5R__text_UjXnwP.h4 p {
	font-size: 18px;
}
  #shopify-section-template--29138975883601__section_HYQDct .group-block-content{	
	padding: 20% 0% 1% 52%;
  width:100%;
}
#shopify-section-template--29015669965137__slideshow_VjRQcd .slideshow-section.spacing-style.section.section--page-width.color-scheme-1.disable-section-top-offset {
  display: block;
}
  #shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content {
		width: 50%;
	}
  #shopify-section-template--29138975883601__slideshow_VjRQcd .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
	padding: 40px 50px 31px !important;
}
	#shopify-section-template--28917386871121__section_byF3nt .image-block::after{
    width: 320px;
  }
  #shopify-section-template--28917386871121__section_4AnkxM .section.section--page-width.color-scheme-1 .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper {
  gap: 60px;
  padding: 0px;
}
.section.section--page-width {
  padding: 0 0px;
}
  /* #shopify-section-template--29015669965137__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:nth-child(3) .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column a {
    margin: 30px auto 20px;
  } */
     /* .size-style.button.button--ATVBKOWZYdkMyK293Z__button_Ujtgt6 {
    margin-bottom: 20px !important;
    margin-top: 27px !important;
  } */
    #shopify-section-template--28917386871121__slideshow_GYGrVh .slideshow-section.spacing-style.section.section--page-width.color-scheme-1.disable-section-top-offset {
  display: block;
}
#shopify-section-sections--28917387297105__section_yVctYz .section.section--page-width.color-scheme-3 {
  display: contents;
}
#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ {
  background-color: #2b2b2b;
}
.header__row.header__row--top.color-scheme-3.section.section--full-width-margin.section--page-width.divider--page-width {
  background-color: #f2ede5;
}
.pf-container-1 {
  padding: 0px 0px !important;
}
.section.section--page-width.color-scheme-58084d4c-a86e-4d0a-855e-a0966e5043f7 {
  display: block;
}
.white-bg-sec .pf-flex-section {
  padding: 40px 30px;
}
   .menu-btn {
    right: 12px;
    width: 35px;
    height: 35px;
  }
   .floating-icons {
    gap: 2px;
    right: 30px;
    top: 26%;
  }
  .menu-btn span {
  width: 18px;
  }
  
  .icon-circle {
  width: 36px;
  height: 36px;
  }
  #shopify-section-template--29138975883601__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block__image, #shopify-section-template--29015669965137__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block__image, #shopify-section-template--29123371204945__section_9GaR4C .image-block__image, #shopify-section-template--29123371204945__section_q6LPUx .image-block__image, #shopify-section-template--29123371204945__section_q6LPUx .image-block__image, div#shopify-section-template--29150234968401__section_9GaR4C .image-block__image, #shopify-section-template--29123371204945__section_JMJc8C .image-block__image, #shopify-section-template--29208321163601__section_9GaR4C  .image-block__image, #shopify-section-template--29219306996049__section_9GaR4C .image-block__image {
  height: 300px !important;
}
#shopify-section-template--29138975883601__section_HYQDct .group-block-content::after, #shopify-section-template--29123371204945__section_yJtGkT .group-block-content::after, #shopify-section-template--29220043915601__section_c6EqpE .group-block-content::after, #shopify-section-template--29710972551505__section_CUgGRh .group-block-content::after{
  width: 50% !important;
}
#shopify-section-template--29138975883601__section_HYQDct .group-block-content, #shopify-section-template--29123371204945__section_yJtGkT .group-block-content, #shopify-section-template--29710972551505__section_CUgGRh .group-block-content{
  padding: 10% 1% 1% 55% !important;
}
#shopify-section-template--28917387198801__main .section.page-width-content.color-scheme-1 {
  display: block;
  max-width: 1440px;
  margin: auto;
  padding: 0px 40px;
}
#shopify-section-template--29176117035345__section_b9qpcc .page-block.spacing-style h2, #shopify-section-template--29175868817745__section_WmiXkq .page-block.spacing-style h2, #shopify-section-template--29176032297297__section_EcbHAA .page-block.spacing-style h2 {
  font-size: 24px;
}
#shopify-section-template--29176117035345__section_b9qpcc .page-block.spacing-style h3, #shopify-section-template--29175868817745__section_WmiXkq .page-block.spacing-style h3, #shopify-section-template--29176032297297__section_EcbHAA .page-block.spacing-style h3 {
  font-size: 20px;
  margin: 0px;
}
.MsoNormal {
  margin: 0px !important;
}
#shopify-section-template--29204643512657__slideshow_VjRQcd .slideshow-section.spacing-style.section.section--page-width.color-scheme-1.disable-section-top-offset {
  display: block;
}
#shopify-section-template--29204643512657__section_4BtYDY .section.section--page-width.color-scheme-4 {
  display: flex;
}
.image-block.image-block--AQ0Vocjl4Um0vSTRma__image_zBWeAg.image-block--height-fill.spacing-style.size-style img {
  margin: auto;
  width: 100%;
}
#shopify-section-template--29204643512657__section_C6zrzc .section.section--page-width.color-scheme-1 {
  display: block;
}
#shopify-section-template--29204643512657__section_4BtYDY .border-style.custom-section-content {
  background-color: #faf5ed;
  padding: 0px 10px 0;
}
#shopify-section-template--29129494430033__section_ViC4bn .section.section--page-width.color-scheme-1, #shopify-section-template--29135167750481__section_T7cJwd .section.section--page-width.color-scheme-1, #shopify-section-template--29129494430033__section_gz8LBh .section.section--page-width.color-scheme-1, #shopify-section-template--29129494430033__section_jMMFgU .section.section--page-width.color-scheme-1{
  display: block;
}
#shopify-section-template--29244362162513__section_njF8Qb iframe, #shopify-section-template--29244470264145__section_3MF6Dz iframe, #shopify-section-template--29473850098001__section_njF8Qb iframe {
  min-width: 500px !important;
}

}
@media screen and (max-width: 1270px) {
  #shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block .group-block-content .group-block {
	padding: 40px !important;
}
 #shopify-section-template--29347557572945__section_JPjP6g .size-style.button {
	font-size: 14px;
	padding: 5px 14px;
}

  #shopify-section-template--29347557572945__section_JPjP6g {
	background-color: #faf5ed;
	margin: 0;
	padding: 20 0px;
  border-bottom: 1px solid #ede4dc;
}

#shopify-section-template--29347557572945__section_JPjP6g .border-style.custom-section-content {
	background: #faf5ed;
	border-top: 0px solid #ede4dc;
	border-bottom: 0px solid #ede4dc;
	padding: 10px 0px 10px 0px;
}
  .headcontact-btn a {
	
	font-size: 14px !important;

}
  .headertradebtn.section.section--page-width a {

	top: 25px;

	left: 0px;
}
#shopify-section-template--29288975761745__section_qEi3dV {
	background-color: #f2ede5;
}
  #shopify-section-template--29287877935441__section_qEi3dV {
	background-color: #f2ede5;
}
  #shopify-section-template--29289057550673__section_qEi3dV {
	background-color: #f2ede5;
}
#shopify-section-template--29282736603473__section_qEi3dV {
	background-color: #f2ede5;
}
  #shopify-section-template--29267324928337__custom_liquid_Q4qKQc {
	background-color: #faf5ed;
}

  .menu-list__list-item {
  padding: 12px 0px;
}
.spacing-style.text-block.text-block--AZ25XVTZpaWg0UEJSR__text_9ftkY9.h2.text-block--align-center.text-block--full-width {
  width: 70%;
}

#shopify-section-template--29150234968401__section_ttBeFM {
	background-color: #faf5ed;
}
#shopify-section-template--29150234968401__section_fQKiKr {
	background-color: #faf5ed;
}
#shopify-section-template--29150234968401__section_xmgN4G .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	width: 100%;
	padding: 7% 50% 1% 0%;
}
#shopify-section-template--29150234968401__section_HYQDct .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	width: 100%;
	padding: 20% 0% 1% 50%;
}

#shopify-section-template--29129494430033__slideshow_VjRQcd .section {
	display: inherit;
}
#shopify-section-template--29129494430033__section_ViC4bn,#shopify-section-template--29129494430033__section_9GaR4C,#shopify-section-template--29129494430033__section_gkTYQ8,#shopify-section-template--29129494430033__section_wBfdkH {
	background-color: #faf5ed;
}

#shopify-section-template--29129494430033__section_QwXPr8 {
	background-color: var(--primary-green-dark);
}

  #shopify-section-template--29135167750481__section_ViC4bn,#shopify-section-template--29135167750481__section_cJmKL4,#shopify-section-template--29135167750481__section_bzqAG6,#shopify-section-template--29135167750481__section_zyWcf6,#shopify-section-template--29135167750481__section_QLmf68 {
	background-color: #faf5ed;
}
#shopify-section-sections--28917387297105__section_yVctYz{
  	background-color: #faf5ed;
}

#shopify-section-template--29135167750481__section_QwXPr8 {
	background-color: var(--primary-green-dark);
}


  .spacing-style.text-block.text-block--ARmdmU2ViWi9meGNhc__text_gpb7Q6.rte.text-block--align-center.text-block--full-width p {
	font-size: 18px;
	width: auto;
}
  #shopify-section-template--29135167750481__slideshow_VjRQcd .section {
	display: unset;
}
  #shopify-section-template--29138975883601__slideshow_VjRQcd .section {
	display: unset;
}

  #shopify-section-template--29135167750481__section_zyWcf6 h3 {
	font-size: 28px;
	line-height: 1.4;
}
  #shopify-section-template--29135167750481__section_bzqAG6 h3 {
	font-size: 25px !important;
  line-height: 1.4;
}
#shopify-section-template--29135167750481__section_dYzrx4 h3 {
	font-size: 25px;
	line-height: 1.4;
}

#shopify-section-template--29135167750481__section_JBRUtP h3 {
	font-size: 23px;
	line-height: 1.4;
}

  #shopify-section-template--29135167750481__section_cJmKL4 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29135167750481__section_gkTYQ8 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29135167750481__section_Ecbfa3 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29135167750481__section_wBfdkH .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	background-color: #faf5ed;
	padding: 10px;
}

  .text-block ul li {
	font-size: 15px;
}
#shopify-section-template--29135167750481__section_9GaR4C h3 {
	font-size: 25px !important;
}

#shopify-section-template--29135167750481__section_9GaR4C h3 {
	font-size: 25px;
	line-height: 1.4;
}
#shopify-section-template--29135167750481__section_cJmKL4 h3 {
	font-size: 23px;
  line-height: 1.4;
}

#shopify-section-template--29135167750481__section_Ecbfa3 h3 {
	font-size: 23px;
	line-height: 1.4;
}

#shopify-section-template--29135167750481__section_wBfdkH h3 {
	font-size: 25px;
  line-height: 1.4;
}

   #shopify-section-template--29135167750481__slideshow_VjRQcd h1 {
	font-size: 30px;
	
}
.text-block p {
	min-height: auto !important;
}
.text-block ul {
	margin: 0px !important;
	padding: 0px 20px;
}

#shopify-section-template--29135167750481__section_gkTYQ8 h3 {
	font-size: 25px;
  line-height: 1.4;
}
#shopify-section-template--29135167750481__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent {
	padding: 80px 30px !important;
}
#shopify-section-template--29135167750481__section_4Nia3e p {
	line-height: 1.5;
}


#shopify-section-template--29129494430033__section_PYRH8E li {
	font-size: 16px;
}




 #shopify-section-template--29129494430033__section_cJmKL4 ul {
	margin: 0px;
}

#shopify-section-template--29129494430033__section_cJmKL4 p {
	min-height: auto !important;
}
 #shopify-section-template--29129494430033__section_ViC4bn ul li {
	list-style-position: inside;
	text-align: left;
}

 #shopify-section-template--29129494430033__section_4Nia3e .section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {
	
	line-height: 1.4;
}


#shopify-section-template--29129494430033__slideshow_VjRQcd .slide__content h1 {
	font-size: 30px !important;
}

#shopify-section-template--29123371204945__section_PYRH8E ul li {
	font-size: 15px;

}
  #shopify-section-template--28917386871121__section_4AnkxM {
  width: 100%;
}
.section.section--full-width {
  padding: 0px 30px !important;
}
	header .menu-list__list-item a {
  padding: 0px 11px;
  font-size: 17px;
}
.spacing-style.text-block.h4 p {
  font-size: 24px;
}
#shopify-section-template--28917386871121__section_mG9qTj .rte p {
  width: 100%;
}
.slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  margin-left: 10%;
}
 .table-wrapper {
    overflow-x: auto; /* allows horizontal scroll on small screens */
  }
.spacing-style.text-block.h4 p {
  font-size: 24px;
}
#shopify-section-template--29150234968401__slideshow_VjRQcd .section {
	display: block;
}

}

@media screen and (max-width: 1125px) {
  #shopify-section-template--29129494430033__section_4Nia3e, #shopify-section-template--29135227781457__section_VdHbEx, #shopify-section-template--29135198650705__section_mpLENR, #shopify-section-template--29135227814225__section_FgPwMj, #shopify-section-template--29135198126417__section_74c7p3, #shopify-section-template--29135167750481__section_NzEkKR {
  padding: 0px 0px 40px;
  margin-bottom: 40px;
}
    /* .size-style.button.button--ATVBKOWZYdkMyK293Z__button_Ujtgt6 {
    margin-bottom: 20px !important;
    margin-top: 18px !important;
  } */
.comparison-table th {
  font-size: 26px;
}
.comparison-table td {
  font-size: 20px;
}
  .header-section:has(> #header-component[sticky="always"]) {
	top: 39px !important;
}
  header .menu-list__list-item a {
    padding: 0px 11px;
    font-size: 16px;
  }
  #shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
	border: 0px solid #fff !important;
	padding: 0px 10px 40px;
}
#shopify-section-template--29347557572945__section_4Nia3e .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	padding-right: 40px;
}
#shopify-section-template--29347557572945__section_4Nia3e h3 {
	text-align: left !important;
}

#shopify-section-template--29347557572945__section_4Nia3e .size-style.button {
	padding: 5px 9px 5px !important;
	font-size: 12px;
}

    .headertradebtn.section.section--page-width a {

	top: 25px;

	left: 0px;
}
  #shopify-section-template--29135167750481__section_ViC4bn h3 {
	font-size: 28px;
}
.spacing-style.text-block.text-block--ARmdmU2ViWi9meGNhc__text_gpb7Q6.rte.text-block--align-center.text-block--full-width p {
	font-size: 18px;
	width: auto;
}
  #shopify-section-template--29123371204945__slideshow_VjRQcd .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
	padding: 50px 30px;
}

  #shopify-section-template--29123371204945__slideshow_VjRQcd .spacing-style.text-block.text-block--AcGRLeCs4Y0FmOVA3W__text_wTrgEN h1 {
	font-size: 30px !important;
}
#shopify-section-template--29123371204945__slideshow_VjRQcd .spacing-style.text-block.text-block--AOTE5VXVORjFDd2F2N__text_64T4E4 p {
	text-align: left !important;
}
.spacing-style.text-block.h6 p {
  font-size: 20px;
}
#shopify-section-template--28917386871121__section_byF3nt .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .rte p {
  min-height: 140px;
}
#shopify-section-template--28917386871121__section_4AnkxM .section.section--page-width.color-scheme-1 .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper {
  gap: 40px;
}
#shopify-section-template--28917386871121__section_byF3nt .image-block::after {
  width: 250px;
}
.overflow-menu::part(overflow-list) {
  background-color: #fff;
}
.mega-menu__grid {
  width: auto !important;
  margin: auto;
  padding: 10px 20px 20px;
}
.mega-menu__list.list-unstyled {
  background-size: 0px;
}
.menu-list__link span {
  font-size: 13px;
}
.mega-menu__column .wrap-text {
  width: auto;
}
#submenu-6 .wrap-text{
  width: auto !important;
}
#shopify-section-template--29015669965137__slideshow_VjRQcd .rte p {
  width: 520px;
}
  #shopify-section-template--28917386871121__section_jrj9tk .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
    padding: 5% 265px;
  }
  #shopify-section-template--29138975883601__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block__image, #shopify-section-template--29015669965137__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block__image, #shopify-section-template--29123371204945__section_9GaR4C .image-block__image, #shopify-section-template--29123371204945__section_q6LPUx .image-block__image, #shopify-section-template--29123371204945__section_q6LPUx .image-block__image, div#shopify-section-template--29150234968401__section_9GaR4C .image-block__image, #shopify-section-template--29123371204945__section_JMJc8C .image-block__image, #shopify-section-template--29208321163601__section_9GaR4C  .image-block__image, #shopify-section-template--29219306996049__section_9GaR4C .image-block__image {
  height: 200px !important;
}
  #shopify-section-template--29204643512657__section_4Nia3e .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
    padding-right: 30px;
  }
  #shopify-section-template--29208321163601__section_9GaR4C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:first-child div {
  width: inherit;
}
  .menu-btn {
    top: auto;
    bottom: 15%;
  }
  #shopify-section-template--29451784356177__section_z8ydUW .border-style.custom-section-content .spacing-style .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content {
  padding: 0px 0px 0px 0px;
  display: flow-root;
}
#shopify-section-template--29451784356177__section_z8ydUW .border-style.custom-section-content .spacing-style .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content p {
  display: grid;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content, 
#shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(3) .group-block-content, 
#shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content{
  width: 100% !important;
}
}
@media screen and (max-width: 1152px) {
    .spacing-style.text-block.h4 p {
    font-size: 22px;
  }
   .spacing-style.text-block.text-block--AMFY2ck9qaFVRMHRlV__text_Wwfxey.rte.text-block--align-left.text-block--full-width {
    padding-right: 10px;
  }

#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(3) .group-block-content, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content{
  width: 100% !important;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li{
  font-size: 11px !important;
}
  #shopify-section-template--28917386871121__section_TBhpiD a.contents.user-select-text p {
  min-height: 80px !important;
}
  header .menu-list__list-item a {
    font-size: 16px;
  }
    #submenu-10 .mega-menu.section {
    padding-left: 65%;
  }
  #shopify-section-template--29500138193233__section_9HiQ3P .group-block-content .group-block .group-block-content .rte.text-block--align-center h5::after {
  left: 100px;
  width: 180px;
}
#shopify-section-template--28917387002193__section_e9emwp .cv-form-wrap {
  min-width: 550px;
}
#shopify-section-template--28917386871121__section_4AnkxM p {
  font-size: 16px;
  }

}
@media screen and (max-width: 1025px) {
  .menu-list--mobile a {
  font-size: 14px !important;
}
   #shopify-section-template--29710972551505__custom_liquid_9VYgiU .group-block-content .spacing-style.text-block p {
    padding: 0px 30px;
  }
    .page-id-163222454609 .text-block--align-left.h4 p, .page-id-163204104529 .text-block--align-left.h4 p, .page-id-163222389073 .text-block--align-left.h4 p, .page-id-163222225233 .text-block--align-left.h4 p, .page-id-163222356305 .text-block--align-left.h4 p, .page-id-163222323537 .text-block--align-left.h4 p {
    font-size: 20px !important;
  }
    /* .size-style.button.button--ATVBKOWZYdkMyK293Z__button_Ujtgt6 {
    margin-bottom: 20px !important;
    margin-top: 14px !important;
  } */
  .spacing-style.text-block.text-block--ARmRRTXpyL25YYWRpZ__text_tbRFQD.h3.text-block--align-left.text-block--full-width p, .spacing-style.text-block.text-block--AVE8zS0NTTnZwbVlnM__text_nMfnGj.h3 p, .spacing-style.text-block.text-block--AcDJ3NVRFajA5ME5tL__text_GQnXLL.h3.text-block--align-left.text-block--full-width p{
    font-size: 18px;
  }
   #submenu-10 .mega-menu.section {
    padding-left: 55%;
  }
  #shopify-section-template--29451784356177__section_CmR7wb .group-block .group-block-content .group-block:last-child .group-block-content .group-block {
  padding: 0px 30px 30px;
}
  #shopify-section-template--29244362162513__section_njF8Qb iframe, #shopify-section-template--29244470264145__section_3MF6Dz iframe, #shopify-section-template--29473850098001__section_njF8Qb iframe {
  min-width: 300px !important;
}
.headertradebtn.section.section--page-width a {
	top: 25px;
	left: 0px;
}
#shopify-section-template--29244470264145__section_9HiQ3P .spacing-style.text-block.h6 p {
	padding: 0px 340px !important;
}
#shopify-section-template--29244470264145__section_9HiQ3P .rte p {
  width: 97%;
}
    #shopify-section-template--29150234968401__section_KrmNmJ p, #shopify-section-template--29150234968401__section_fQKiKr p, #shopify-section-template--29150234968401__section_ttBeFM p, #shopify-section-template--29150234968401__section_kXkWFH p {
	font-size: 18px;
	width: auto;
}
.spacing-style.text-block.text-block--AYUp5WFZ2MG14bHU0M__product_title_j7qXTx-2.rte {
  width: 100% !important;
}
  #shopify-section-template--29135167750481__section_ViC4bn,#shopify-section-template--29135167750481__section_cJmKL4,#shopify-section-template--29135167750481__section_bzqAG6,#shopify-section-template--29135167750481__section_zyWcf6,#shopify-section-template--29135167750481__section_QLmf68 {
	background-color: #faf5ed;
}
#shopify-section-sections--28917387297105__section_yVctYz{
  	background-color: #faf5ed;
}

#shopify-section-template--29135167750481__section_QwXPr8 {
	background-color: var(--primary-green-dark);
}
  .template-page\.pvc-foil-wardrobes .spacing-style.text-block.h3 h3 {
	font-size: 32px!important;

}
#shopify-section-template--29135167750481__section_EUnjpL h3 {
	font-size: 28px;
	
}
.spacing-style.text-block.text-block--AQ05BVENBd0lPcjlWW__text_6WFxtC.rte.text-block--align-center h3 {
	font-size: 28px;
	line-height: 1.4;
}
.spacing-style.text-block.text-block--AbDBkWVllQ1ozTXhDe__text_JNxTaA.h4.text-block--align-center.text-block--full-width p {
	font-size: 28px !important;
}
.spacing-style.text-block.text-block--ANnBGc2dmUXl6aHJ6Z__text_rT9p4A.h4.text-block--align-center.text-block--full-width p {
	font-size: 28px !important;
}
.template-page\.pvc-foil-wardrobes .spacing-style.text-block p strong {
	font-size: 20px !important;
	font-family: Futura;
	width: auto !important;
}
.template-page\.pvc-foil-wardrobes .spacing-style.text-block p {
	font-size: 18px !important;
	font-family: Futura;
	width: auto !important;
}
  #shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content {
		width: 50%;
	}
	#shopify-section-template--29138975883601__section_JYncNV .group-block-content {
		padding: 3% 10%;
	}


  #shopify-section-template--29129494430033__section_9GaR4C h3 {
	font-size: 25px !important;
}
#shopify-section-template--29129494430033__section_ViC4bn ul {
	margin: 0 !important;
	padding: 0px 10px;
}
#shopify-section-template--29129494430033__section_ViC4bn ul li {

	font-size: 16px;
}
    .spacing-style.text-block.h4 p {
    font-size: 19px;
  }
  .spacing-style.text-block.text-block--AMFY2ck9qaFVRMHRlV__text_Wwfxey p:first-child {
  padding-right: 20px !important;
}
  #shopify-section-template--29015669965137__section_4Nia3e .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29123371204945__section_4Nia3e .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  width: 100%;
  }
.header-container a {
  font-size: 14px !important;
}
#shopify-section-template--28917386871121__section_4AnkxM .section.section--page-width.color-scheme-1 .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper {
  gap: 2px;
}
#shopify-section-template--28917386871121__section_mG9qTj .rte p {
   min-height: 100px;
}
.comparison-table th {
  font-size: 22px;
}
.comparison-table td {
  font-size: 18px;
}
  .section.section--page-width {
    padding: 0 0px;
  }
  .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
  padding: 30px 10px 20px;
}
slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  margin-left: 0 !important;
  padding-right: 30px;
}
/* slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  left: -10% !important;
} */
.featured-blog-posts-card__content.layout-panel-flex--column h4 {
  font-size: 15px !important;
  margin-top: -3px;
}
 div#shopify-section-template--28917386871121__product_list_fa6P9H .contents.user-select-text .spacing-style.text-block.rte.text-block--align-left p {
    width: 100% !important;
  }
  #shopify-section-template--29015669965137__section_q6LPUx .spacing-style.text-block.rte p {
  min-height: 50px;
  width: 100% !important;
}
.spacing-style.text-block p {
  font-size: 14px;
}
 
#shopify-section-template--29015669965137__slideshow_VjRQcd .rte p {
  width: 450px;
}
.spacing-style.text-block.text-block--AWFljT29RMDhNZ0Vyd__text_wTrgEN.rte.text-block--align-left.text-block--full-width h1 {
  font-size: 40px;
}
spacing-style.text-block.text-block--AZC9zOVlzTHZDVmdKM__text_UjXnwP.h3 p {
  font-size: 20px;
  padding: 0px 0px;
}
#shopify-section-template--29204643512657__section_4Nia3e a, .image-block.image-block--AZERUMUpUSmpVcXVjS__image_VE8z8H.image-block--height-fit.spacing-style.size-style {
  width: 30px !important;
}
  .floating-icons {
 top: auto;
    bottom: 115px;
  }
  .color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .rte h1 {
  font-size: 38px;
  padding-bottom: 5px;

}
.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .h3 p {
  font-size: 22px;
}
}


@media screen and (max-width: 1023px) {
    slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
    padding-right: 0px !important;
  }

.headcontact-btn.contact-btn-link.booking-btn a {

	font-size: 12px !important;

}
.header-container a {
	font-size: 12px !important;
}

  #shopify-section-sections--28917387264337__custom_liquid_xqxRnR a {
	left: 0;
	top: 11px;
}

  .template-page\.melamine-wardrobes.page-163204104529 .section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {

	font-size: 20px;
}
.template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block p strong {
	font-size: 20px;
}
/* Doorsec*/
#shopify-section-template--29150848975185__section_AqkiCh .group-block-content * {
	text-align: left !important;
}
.spacing-style.text-block.text-block--AcEQ4WmhWVEE2VWI5d__text_UjXnwP.h3 p, .spacing-style.text-block.text-block--AWURhTFBiNXhqU2s3e__text_khpbBK.h3.text-block--align-left.text-block--full-width p {
	font-size: 18px;
}
.spacing-style.slide__content.color-scheme-6.background-transparent::after {
	width: 100% !important;
	
}
#shopify-section-template--29150848975185__slideshow_VjRQcd .group-block-content {
	width: 100%;
	text-align: center !important;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content h1, #shopify-section-template--29150848975185__slideshow_VjRQcd .group-block-content h1 {
	font-size: 24px;
	text-align: center;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .slideshow-slide .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column p {
	text-align: left;
	text-align: center !important;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .size-style.button{
  margin:0 auto !important;
}
#shopify-section-template--29150848975185__section_AqkiCh .group-block-content::after {
	width: 100%;
}
#shopify-section-template--29150848975185__section_AqkiCh .group-block-content {
	padding: 4%;
}
#shopify-section-template--29150848975185__section_AqkiCh .group-block-content *{
  text-align:center;
}
#shopify-section-template--29150848975185__section_AqkiCh .group-block-content * {
	text-align: center !important;
}
.spacing-style.slide__content.color-scheme-6.background-transparent {
  height: auto;
}
.spacing-style.text-block.text-block--AcEQ4WmhWVEE2VWI5d__text_UjXnwP.h3 {
	margin: auto;
}
.spacing-style.text-block.text-block--AR2dEcnpFdmJmKzlEQ__text_TK8GjR.rte.text-block--align-left.text-block--full-width p {
	text-align: center !important;
}
.slideshow-section.spacing-style.section.section--page-width.color-scheme-1.disable-section-top-offset {
	padding: 0;
}
/*Door End */
#shopify-section-template--29138975883601__section_HYQDct h3 {
	color: #fff;
	text-align: center !important;
}
.spacing-style.text-block.text-block--AT25BdTZOUzExaHV5R__text_UjXnwP.h4 p {
	font-size: 18px;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
	padding: 40px 50px 30px;
}
.spacing-style.text-block.text-block--AMlpDMnFkZnNmUzV1c__text_nMfnGj.h3.text-block--align-left.text-block--full-width p {
		font-size: 20px;
	font-family: Baskervville;
}
.spacing-style.text-block.text-block--AaHMwN1pzaGVUemZQV__text_JNxTaA.h4.text-block--align-center.text-block--full-width p {
	font-size: 25px !important;
}
.spacing-style.text-block.text-block--AVnFBd0ZiV3Z3OHFnU__text_rT9p4A.h4.text-block--align-center.text-block--full-width p {
	font-size: 25px !important;
}
.spacing-style.text-block.text-block--AL3poWThoR0NVUWlqZ__text_WHTcGc.rte p {
	font-size: 25px !important;
}
.spacing-style.text-block.text-block--Ab3dEdE5vRjZ2SmprM__text_PmaAXC.h3.text-block--align-center.text-block--full-width h3 {
	font-size: 30px !important;
}

  /* .template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block.rte p, .template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block.h3 p {
	font-size: 17px;
	color: #2b2b2b;
	width: auto;
} */
.template-page\.melamine-wardrobes.page-163204104529 .spacing-style.text-block.rte h3 {
	font-size: 25px;
	
}

#shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content {
		width:50%;
	}
  #shopify-section-template--29138975883601__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent::after {
	width: 50%;
}
	#shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content h1{
		font-size:25px;
	}
	#shopify-section-template--29138975883601__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent::after{
		width: 50%;
	}	
	#shopify-section-template--29138975883601__slideshow_VjRQcd {
	margin-bottom: 0px;
}
  .template-page\.pvc-foil-wardrobes .spacing-style.text-block.h3 h3 {
	font-size: 28px!important;

}
.template-page\.pvc-foil-wardrobes .spacing-style.text-block p {
	font-size: 16px !important;
	font-family: Futura;
	width: auto !important;
}
.template-page\.pvc-foil-wardrobes .spacing-style.text-block p strong {
	font-size: 18px !important;
	font-family: Futura;
	width: auto !important;

}
#shopify-section-template--29150234968401__slideshow_VjRQcd h1 {
	font-size: 30px;
}
#shopify-section-template--29150234968401__slideshow_VjRQcd slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	margin-left: 0 !important;
	padding-right: 0!important;
}
 
#shopify-section-template--29150234968401__slideshow_VjRQcd .slide__content {
	width: 60%;
	padding: 20px 20px 30px 20px !important;
}
 
.section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {
 
	font-size: 17px;
}

#shopify-section-template--29150234968401__section_9GaR4C .section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {
		line-height: 1.4 !important;
}
#shopify-section-template--29138975883601__section_qyAfK8 .group-block-content, #shopify-section-template--29123371204945__section_kz36Hm .group-block-content {
  padding: 6% 55% 1% 3%;
}


.spacing-style.slide__content.color-scheme-6.background-transparent {
  height: auto;
}
#shopify-section-template--29138975883601__section_HYQDct .group-block-content, #shopify-section-template--29123371204945__section_yJtGkT .group-block-content, #shopify-section-template--29710972551505__section_CUgGRh .group-block-content{
  height: auto;
  padding: 0% 0% 3% 75%;
}
#shopify-section-template--29138975883601__section_qyAfK8 .group-block-content, #shopify-section-template--29123371204945__section_kz36Hm .group-block-content{
	padding: 6% 75% 1% 3%;
  height: auto;
}
#shopify-section-template--28917386871121__section_cfpngT .image-block img {
  height: 190px;
}

}

@media screen and (max-width: 990px) {
  #shopify-section-template--29866157539665__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p, 
  #shopify-section-template--29884596715857__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p, 
  #shopify-section-template--29905634525521__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p
  #shopify-section-template--29907489489233__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p,
  #shopify-section-template--29927734083921__section_bnm3Db .border-style.custom-section-content .spacing-style .group-block.size-style.color-scheme-2 p{
    width: auto !important;
  }
   #shopify-section-template--29710972551505__custom_liquid_9VYgiU .group-block-content .spacing-style.text-block p {
    padding: 0px 16px;
  }
   .spacing-style.text-block.text-block--AMFY2ck9qaFVRMHRlV__text_Wwfxey.rte.text-block--align-left.text-block--full-width {
    padding-right: 40px;
  }
  .spacing-style.text-block.text-block--AaUVoUzFNdE11cG9RR__text_DLRNNa p:first-child {
  padding-right: 20px;
}
.size-style.button {
    font-size: 13px;
  }
    #shopify-section-template--29710972551505__section_bCkCFj .spacing-style.text-block p:last-child {
    padding-right: 0px;
  }
  
  span.header-logo__image-container.header-logo__image-container--original img {
    width: 140px;
}
  #shopify-section-template--29500138193233__section_9HiQ3P .spacing-style.text-block h5 {
  width: 70px;
  height: 70px;
  }
    #shopify-section-template--29500138193233__section_9HiQ3P .group-block-content .group-block .group-block-content .rte.text-block--align-center h5::after {
    left: 70px;
    width: 100px;
  }
   #submenu-10 .mega-menu.section {
    width: auto;
    padding-left: 0%;
  }
#shopify-section-template--29451784356177__section_N97wfP {
  padding-bottom: 0px;
}
#shopify-section-template--29451784356177__section_QMV7BC {
  padding: 0px;
}
  #shopify-section-sections--28917387264337__custom_liquid_VkFmQQ nav ul {
  padding: 0px;
}
#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ .header-container {
  padding: 0 0px;
}
#shopify-section-sections--28917387264337__custom_liquid_VkFmQQ nav ul li {
  margin: 0 5px;
}
 header .menu-list__list-item a {
    font-size: 13px;
  }
  .header__row.header__row--bottom.color-scheme-1.section.section--full-width-margin.section--page-width.mobile\:hidden .header__columns.spacing-style {
  padding: 0px 0;
}
  #shopify-section-sections--28917387264337__custom_liquid_VkFmQQ nav ul {
    padding: 0;
    margin: 5px 0px;
  }
  #shopify-section-template--28917386871121__slideshow_GYGrVh .spacing-style.slide__content.color-scheme-6.background-transparent h1 {
  width: 80%;
  font-size: 45px;
  color: #fff;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .slideshow--content-on-media .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .size-style.button-secondary {

  font-size: 15px;
}
.spacing-style.text-block.h3 h3 {
  font-size: 28px;
}
#shopify-section-template--28917386871121__section_4AnkxM p {
  font-size: 15px;
}
.image-block.image-block--AWUhRMCt4OE40SXhnU__image_8FTCtx.image-block--height-fit.spacing-style.size-style {
  width: 100%;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .spacing-style.slide__content .spacing-style.text-block.rte p {
  width: 60%;
  margin: inherit;
}
.spacing-style.text-block.text-block--ATVRweFlzUmFrN0Rmc__text_fakekK.rte.text-block--align-center.text-block--full-width p {
  width: 80%;
}
.collection-card__content.layout-panel-flex--column p {
  font-size: 16px !important;
}
.slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  margin-left: 5%;
}
#shopify-section-template--28917386871121__section_haDNAE .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column a {
  width: auto;
}
#shopify-section-template--28917386871121__section_haDNAE .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  margin: auto !important;
  width: 100%;
  display: grid;
}
#shopify-section-template--28917386871121__section_mG9qTj .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
  padding: 0px;
  width: stretch !important;
}
#shopify-section-template--28917386871121__section_mG9qTj .rte p {
    min-height: 110px;
}
.spacing-style.text-block.text-block--AYStLajQ5STdLa1B5S__text_X4UqnW.custom.text-block--align-center.text-block--full-width.custom-typography.custom-font-size.custom-color, .spacing-style.text-block.text-block--AVWRKUnRTSDN1NHVVV__text_tCcGFT.rte h1 {
  font-size: 45px;
}
.custom.custom-typography.custom-font-size.custom-color p {
  width: 100%;
  font-size: 18px;
}

#shopify-section-template--29030055510353__section_ffE84D, #shopify-section-template--29030055510353__section_9N8Gia, #shopify-section-template--29030055510353__section_VFa4mD, #shopify-section-template--29030055510353__section_CYBfhU, #shopify-section-template--29030055510353__section_rtYV3Q, #shopify-section-template--29030055510353__section_AVbfzb {
  padding-top: 0px;
}
.size-style.button {
  font-size: 14px;
  padding: 6px 20px;
}
  .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .spacing-style.text-block.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
    min-height: 169px;
  }
  #shopify-section-template--29015669965137__slideshow_VjRQcd .rte p {
  width: 400px;
}
#shopify-section-sections--28917387297105__section_PUCKjJ .menu__heading__default {
  font-size: 20px !important;
}
#shopify-section-sections--28917387297105__section_Gb6rtR {
  padding: 20px 0 0;
}
#shopify-section-template--28917386871121__section_qE7d97 {
    padding: 40px 0;
}
template--28917386871121__section_mG9qTj, div#shopify-section-template--28917386871121__section_cfpngT {
    padding: 40px 0;
}
    #shopify-section-template--28917386871121__section_jrj9tk .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
        padding: 5% 155px;
    }
    div#shopify-section-template--28917386871121__section_mG9qTj, div#shopify-section-template--28917386871121__section_cfpngT {
    padding: 40px 0;
}
div#shopify-section-template--29015669965137__section_4Nia3e, #shopify-section-template--29123371204945__section_4Nia3e {
    padding: 40px 0px;
}
#shopify-section-template--29015669965137__section_CkbxmG {
    padding: 20px 0px 30px;
}
#shopify-section-template--29015669965137__section_QwXPr8 {
    padding: 30px 0px 20px;
}
div#shopify-section-template--29015669965137__section_yhXCpB, #shopify-section-template--29123371204945__section_MQGQxN {
    padding: 30px 0px 40px;
}
div#shopify-section-template--29015669965137__section_kLkcjq {
    padding: 40px 0px;
}
#shopify-section-template--29123371204945__section_zxbfnn .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  gap: 5%;
}
.spacing-style .h3 h2 {
  width: 90%;
}
#submenu-10 {
  width: auto !important;
  z-index: 999;
  margin-left: auto;
  margin-right: auto;
}
#shopify-section-template--29451784356177__section_AP7eAU {
  padding: 30px 0px 0px;
}
}

@media screen and (max-width: 894px) {
  #shopify-section-template--28917386871121__section_TBhpiD a.contents.user-select-text p {
  min-height: 65px !important;
  font-size: 13px !important;
}
    .headertradebtn.section.section--page-width a {
    top: 11px;
    left: 0px;
  }
  #submenu-5 .mega-menu__list.list-unstyled li:nth-child(3) div {
  position: relative;
  left: 20px;
}
#submenu-5 .mega-menu__list.list-unstyled li:last-child div {
  position: relative;
  left: 40px;
}
  .spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: 160px !important;
}
#shopify-section-template--28917386871121__section_byF3nt .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .rte p {
  min-height: 200px;
}
#shopify-section-template--28917386871121__section_byF3nt .image-block::after {
  width: 200px;
}
#shopify-section-template--28917386871121__section_mG9qTj .rte p {
  min-height: 140px;
}
.section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {
  padding: 0;
  font-size: 18px;
}
#shopify-section-template--29015669965137__section_q6LPUx .spacing-style.text-block.rte p {
  min-height: 80px;
  width: 90% !important;
}
.spacing-style.text-block p {
  font-size: 16px;
}
.spacing-style.text-block.text-block--AWFljT29RMDhNZ0Vyd__text_wTrgEN.rte.text-block--align-left.text-block--full-width h1 {
  font-size: 45px;
}

.spacing-style.text-block p {
  font-size: 15px;
}
.section.section--page-width.color-scheme-4 .spacing-style.text-block.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  font-size: 15px;
}
 .spacing-style.text-block.h4 p {
    font-size: 20px;
  }
.spacing-style.text-block.text-block--AWncyeTZ6ckdwK0lDc__text_NmUDaM.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p, .spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: 123px;
}
  .spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
    min-height: 150px;
  }
   .spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
    min-height: 150px;
  }

#shopify-section-template--29015669965137__slideshow_VjRQcd .rte p {
  width: 360px;
}
.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .h3 p {
  font-size: 18px;
}
.spacing-style.text-block.text-block--AWFljT29RMDhNZ0Vyd__text_wTrgEN.rte.text-block--align-left.text-block--full-width h1 {
  font-size: 30px;
}
.header__row.header__row--top.color-scheme-3.section.section--full-width-margin.section--page-width.divider--page-width .header__columns.spacing-style {
  background-color: #f2ede5 !important;
  padding: 0px 0px !important;
}
  .spacing-style.text-block.text-block--AWDE2YW11R2d1ditaW__text_6FVAR3.rte.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--AVEZlOVJrOFNrZ0laQ__text_dnFqV3.rte.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--AUUtkWVpLUjhIUEkze__text_fiaMmb.rte.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--AZUpCaVk4cmRyUjZSQ__text_gRhmtD.rte.text-block--align-center.text-block--full-widthp {
  font-size: 18px;
  width: 100%;
}

  .template-page\.pvc-foil-wardrobes.page-163222454609 .spacing-style.text-block.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--align-center.text-block--full-width p {
    width: 100% !important;
    font-size: 16px !important;
  }
  .product-navigation .nav-btn {
    padding: 10px 10px;
    font-size: 13px !important;
}
#shopify-section-template--29244362162513__section_njF8Qb iframe, #shopify-section-template--29244470264145__section_3MF6Dz iframe, #shopify-section-template--29473850098001__section_njF8Qb iframe {
  min-width: auto !important;
}
  #shopify-section-template--29451784356177__section_CmR7wb .group-block .group-block-content .group-block:first-child .group-block-content .group-block {
    padding: 0px 40px 10px 20px;
  }
}
@media screen and (max-width: 830px) {
  #shopify-section-sections--28917387264337__custom_liquid_xqxRnR a {
	
	top: 11px;
	
}
#shopify-section-template--29123371204945__section_JMJc8C .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
  margin: auto;
}

  .header-container a {
    font-size: 11px !important;
  }
  #shopify-section-sections--28917387264337__custom_liquid_VkFmQQ .contact-info a {
    margin-right: 1px;
}
.spacing-style.text-block.h3 h3 {
  text-align: center !important;
}
#shopify-section-template--28917386871121__section_byF3nt .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  gap: 30px;
}
#shopify-section-template--28917386871121__section_byF3nt .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .rte p {
  min-height: 280px;
}
.spacing-style.text-block.text-block--AY3FyL0FKL3h3VXZUR__text_wTrgEN.h3.text-block--align-left.text-block--full-width h3 {
  text-align: left;
}
  .banner-inner .pf-flex-section:after {
    width: 60%;
}
.gallery{
  width:120px;
}
.product-navigation .nav-btn {
    padding: 10px 10px;
}
 .spacing-style.text-block.text-block--AMFY2ck9qaFVRMHRlV__text_Wwfxey.rte.text-block--align-left.text-block--full-width {
    padding-right: 0px;
  }
    .size-style.button {
    font-size: 13px !important;
    padding: 6px 16px;
  }
    #shopify-section-template--29710972551505__custom_liquid_9VYgiU .group-block-content .spacing-style.text-block p {
    padding: 0px 6px;
  }
    #shopify-section-template--28917386871121__section_4AnkxM p {
    font-size: 13px;
  }
    #shopify-section-template--28917386871121__section_4AnkxM img {
    width: 25px;
  }
 

}
@media screen and (max-width: 768px) {

 .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent .layout-panel-flex {
    flex-direction: column !important;
}
}
@media screen and (max-width: 767px) {

  #header-component[data-menu-style="drawer"] .header__column {
	display: contents !important;
}

#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block .group-block-content .group-block {
	padding: 25px !important;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .spacing-style.text-block h2, #shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block .group-block-content .group-block:first-child .spacing-style.text-block h2 {
	text-align: center;
  font-size: 30px;
}
.size-style.button.button--AcTludWpHQUNaOEQ0a__button_X6WNXW, .size-style.button.button--AcGR3NTdGY1NueFB6U__button_QyMexw {
	margin: 0 auto !important;
}
#shopify-section-template--29500138193233__section_jy4Lnf .group-block .group-block-content .group-block {
	padding: 20px 20px 40px 20px;
}
#shopify-section-template--29500138193233__section_N97wfP .spacing-style.text-block.h6 h3, #shopify-section-template--29500138193233__section_jy4Lnf .spacing-style.text-block.h6 h3 {
	font-size: 15px;
}
#shopify-section-template--29500138193233__section_jy4Lnf .group-block .group-block-content {
align-items: center;
}
#shopify-section-template--29500138193233__section_jy4Lnf .group-block {
	margin-top: 10px;
}
#shopify-section-template--29500138193233__section_jy4Lnf .layout-panel-flex {
	gap: 20px;
}
#shopify-section-template--29500138193233__section_jy4Lnf {
	padding: 50px 0;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block .group-block-content .group-block:last-child, #shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:first-child {
	width: 100%;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:first-child {
	order: 2;
}
.spacing-style.text-block.h3 h3 {
	font-size: 22px;
	padding-bottom: 0;
}
/* .service-num {
	margin-bottom: -60px;
}
  #MainContent {
	padding-top: 30px;
}
.service-num {
  display: none;
} */
.service-num {
  display: none !important;
}
  .header-section:has(> #header-component[sticky="always"]) {
	top: 32px !important;
}
  .gold-rule.comingtitle {
	bottom: -10px;
	position: relative;
	top: 25px;

}
.menu-drawer__close-button {

	top: 24px!important;
	
}


  .spacing-style.text-block.text-block--Adm5PWTlONHJLejZmU__text_DAMyKr.rte.text-block--align-left p {
	font-size: 40px;
	color: #faf5ed;
	text-align: center;
	font-family: var(--font-h3--family);
}
.headcontact-info.active-contact {
	padding-top: 0px;
}
.mobile-dropdown.active {
	padding-top: 20px;
}
  .country-name {
	padding-top: 6px;
}

 #shopify-section-template--29347557572945__slideshow_VjRQcd slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	margin-left: 0px !important;
	margin: auto;
  padding:10px;
}

  .spacing-style.text-block.text-block--ANDJ6cTN6YU1UWk1qb__text_64T4E4.h4.text-block--align-left.text-block--full-width.text-block--background {
	padding: 0px;
	margin: 0px !important;
}

#shopify-section-template--29347557572945__section_JPjP6g {
	background-color: #faf5ed;
	margin: 0px;
  border-top: 0px solid #ede4dc;
	border-bottom: 1px solid #ede4dc;
}

#shopify-section-template--29347557572945__section_JPjP6g .size-style.button {
	padding: 10px 20px !important;
	width: 100%;
}
#shopify-section-template--29347557572945__section_JPjP6g .border-style.custom-section-content {
	background: #faf5ed;
	border-top: 0px solid #ede4dc;
	border-bottom: 0px solid #ede4dc;
	padding: 10px;
}
#shopify-section-template--29347557572945__section_4Nia3e .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
	 margin: 0; 
	width: 100% !important;
}

#shopify-section-template--29347557572945__section_4Nia3e  .size-style.button {
	padding: 5px 20px 5px !important;
	font-size: 14px;
	position: relative;
	left: 0;
	right: 0;
	bottom: 20px;
}
#shopify-section-template--29347557572945__section_4Nia3e .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	padding-right: 0px !important;
}

#shopify-section-template--29347557572945__section_4Nia3e .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
	border: 0px solid #fff !important;
	padding: 10px 10px 20px;
}


  .headcontact-number {
	display: inline-flex;
}
  .header-container a {
	
	text-align: center;
}
  #shopify-section-sections--28917387264337__custom_liquid_xqxRnR {
	display: block;
}

#shopify-section-sections--28917387264337__custom_liquid_xqxRnR a:hover {
	color: #fff !important;
}

  .headertradebtn.section.section--page-width {
	display: none;
}

  .headcontact-icons-outer .social-icons a:hover {
	background: #00352f !important;
	color: #fff !important;
}
  #shopify-section-template--29204643512657__section_4Nia3e .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
	margin: 0;
  width:100%!important;
}

  #shopify-section-template--29204643512657__section_4Nia3e .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	padding-right: 50px;
}
  .headcontact-number {
	display: inline-flex;
}
.headcontact-btn.contact-btn-link.booking-btn a {
	
	font-size: 12px !important;

}
.headcontact-info-top a:hover {
	background-color: transparent !important;
}

  	#shopify-section-template--29135167750481__slideshow_dHHtbN .group-block-content {
		width: 100%;
	}
	#shopify-section-template--29135167750481__slideshow_dHHtbN H1 {
		text-align: center;
		font-size: 30px !important;
	}
  .template-page\.pvc-foil-wardrobes.page-163222454609 .spacing-style.text-block.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--align-center.text-block--full-width p {
    width: 100% !important;
    font-size: 16px !important;
  }
  #shopify-section-template--29135167750481__section_T7cJwd .border-style.custom-section-content, 
  #shopify-section-template--29135167750481__section_hd8xVD .border-style.custom-section-content, 
  #shopify-section-template--29135167750481__section_QgD6Uq .border-style.custom-section-content, 
  #shopify-section-template--29135167750481__section_RfTPa7 .border-style.custom-section-content,
  #shopify-section-template--29135198650705__section_8xbc4j .border-style.custom-section-content,
  #shopify-section-template--29135227814225__section_A6HCnM .border-style.custom-section-content,
  #shopify-section-template--29135227781457__section_pBb9pQ .border-style.custom-section-content
  {
		padding: 0;
  }
.spacing-style.text-block.h4 p {
	font-size: 18px !important;
  font-family: Baskervville !important;
}
#shopify-section-template--29135167750481__section_T7cJwd, 
#shopify-section-template--29135167750481__section_hd8xVD, 
#shopify-section-template--29135167750481__section_QgD6Uq, 
#shopify-section-template--29135167750481__section_RfTPa7{
padding: 0;

}
.rte.text-block--align-left.text-block--full-width h3 {
  text-align: center;
}
#shopify-section-template--29135167750481__section_T7cJwd, 
#shopify-section-template--29135167750481__section_hd8xVD, 
#shopify-section-template--29135167750481__section_QgD6Uq, 
#shopify-section-template--29135167750481__section_RfTPa7 {
	background-color: #faf5ed;
	padding: 25px 0px;
  
}
.spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: auto !important;
}
.spacing-style.text-block.text-block--AZ25XVTZpaWg0UEJSR__text_9ftkY9.h2.text-block--align-center.text-block--full-width {
  width: 96%;
}
  .menu-list__scroll-container {
  display: none;
}
#shopify-section-template--29150234968401__section_xmgN4G .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	width: 100%;
	padding: 5% 0%;
}
#shopify-section-template--29150234968401__section_HYQDct .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	width: 100%;
	padding: 6% 0%;
}
  #shopify-section-template--29138975883601__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block__image, #shopify-section-template--29015669965137__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .image-block__image, #shopify-section-template--29123371204945__section_9GaR4C .image-block__image, #shopify-section-template--29123371204945__section_q6LPUx .image-block__image, #shopify-section-template--29123371204945__section_q6LPUx .image-block__image, div#shopify-section-template--29150234968401__section_9GaR4C .image-block__image, #shopify-section-template--29123371204945__section_JMJc8C .image-block__image, #shopify-section-template--29208321163601__section_9GaR4C  .image-block__image, #shopify-section-template--29219306996049__section_9GaR4C .image-block__image {
  height: auto !important;
}
#shopify-section-template--29135167750481__slideshow_VjRQcd .section {
	display: unset;
	top: -30px;
}
  #shopify-section-template--29129494430033__slideshow_VjRQcd .section {
	display: unset;
	top: -29px;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .section {
	top: -30px;
}
#shopify-section-template--29135167750481__section_CkbxmG .border-style.custom-section-content {
	padding: 10px;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content {
	padding-right: 0;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content {
  width: 100%;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content *{
	color:#fff;
  text-align:center;
}
#shopify-section-template--29138975883601__section_qyAfK8 .group-block-content, 
#shopify-section-template--29123371204945__section_kz36Hm .group-block-content {
	padding: 5% 4%;
}
#shopify-section-template--29138975883601__section_HYQDct .group-block-content,  
#shopify-section-template--29123371204945__section_yJtGkT .group-block-content, #shopify-section-template--29710972551505__section_CUgGRh  .group-block-content{
		text-align: center !important;
    padding: 5%;
}
#shopify-section-template--29135167750481__section_zyWcf6 h3 {
	text-align: center;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent::after{
  width: 100%;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .group-block-content h1 {
  font-size: 24px;
  text-align: center;
}
#shopify-section-template--29138975883601__slideshow_VjRQcd .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
	padding: 50px 30px 30px;
}
  
  .spacing-style.text-block.text-block--ATHkxZDRaWlQxMlBtZ__text_iFYy4Q, .text-block--AZk1WL0xmTjdUbVNuV__text_YhWNr7 {
	margin-left: 0;
}

#shopify-section-template--29135167750481__section_zyWcf6 .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style {
	padding: 0px;
}
#shopify-section-template--29135167750481__section_bzqAG6 .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style {

	padding: 0px;
}
#shopify-section-template--29135167750481__section_ViC4bn .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style {

	padding: 0px;
}
#shopify-section-template--29135167750481__section_ViC4bn .border-style.custom-section-content {

	padding: 0px 20px 20px;
}

  #shopify-section-template--29135167750481__section_bzqAG6 h3 {
	text-align: center;
}
#shopify-section-template--29135167750481__section_dYzrx4 h3 {
	text-align: center;
}

  #shopify-section-template--29135167750481__section_JBRUtP h3 {
	font-size: 25px;
	text-align: center;
	line-height: 1.4;
}


#shopify-section-template--29135167750481__section_ViC4bn .group-block,#shopify-section-template--29135167750481__section_9GaR4C .group-block, #shopify-section-template--29135167750481__section_cJmKL4 .group-block {
	padding: 5px 5px 5px 5px;
}

#shopify-section-template--29135167750481__section_gkTYQ8 .group-block{
  padding: 0px;
}
#shopify-section-template--29135167750481__section_Ecbfa3 .group-block{
  padding: 0px;
}
#shopify-section-template--29135167750481__section_wBfdkH .group-block{
  padding: 0px;
}



  #shopify-section-template--29135167750481__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29135167750481__section_cJmKL4 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29135167750481__section_gkTYQ8 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29135167750481__section_Ecbfa3 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29135167750481__section_wBfdkH .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	
	padding: 10px 10px 20px 10px;
}
  #shopify-section-template--29135167750481__section_cJmKL4 h3, #shopify-section-template--29135167750481__section_Ecbfa3 h3 {
	
	text-align: center;
}
#shopify-section-template--29135167750481__section_gkTYQ8 h3 {

	text-align: center;
}
#shopify-section-template--29135167750481__section_wBfdkH h3 {

	text-align: center;
}

.text-block ul {
	padding: 0;
	margin: 0px;
	list-style-position: inside;
}
.text-block ul li {
	text-align: center;
}
#shopify-section-template--29135167750481__section_9GaR4C h3 {
	
	text-align: center;
}
#shopify-section-template--29135167750481__section_ViC4bn h3 {
	text-align: center !important;
}

 #shopify-section-template--29135167750481__slideshow_VjRQcd h1 {
	font-size: 25px;
	text-align: center;
}
#shopify-section-template--29135167750481__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent {
	padding: 50px 30px !important;
}
#shopify-section-template--29135167750481__slideshow_VjRQcd .group-block-content {
	width: 100%;
}
#shopify-section-template--29135167750481__slideshow_VjRQcd p {
	text-align: center;
}

  #shopify-section-template--29129494430033__section_PYRH8E ul li {
	font-size: 15px;
	line-height: 1.7;
	text-align: center !important;
}

  #shopify-section-template--29129494430033__section_PYRH8E ul{
    padding: 0px;
  	list-style-position: inside;
	margin: 0px;
  }

  #shopify-section-template--29129494430033__section_9GaR4C .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29129494430033__section_cJmKL4 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29129494430033__section_gkTYQ8 .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
	
	padding: 10px;
}

 #shopify-section-template--29129494430033__section_wBfdkH h3 {

	text-align: center !important;
}

#shopify-section-template--29129494430033__section_wBfdkH ul {
	padding: 0px;
  	list-style-position: inside;
	margin: 0px;
}
#shopify-section-template--29129494430033__section_wBfdkH li {
	text-align: center;
}

  #shopify-section-template--29129494430033__section_Ecbfa3 h3 {
	text-align: center !important;
}
  #shopify-section-template--29129494430033__section_Ecbfa3 ul li {
	text-align: center;
}

 #shopify-section-template--29129494430033__section_Ecbfa3 ul {
	list-style-position: inside;
	margin: 0px;
	padding: 0px;
}

 #shopify-section-template--29129494430033__section_gkTYQ8 h3 {
	text-align: center !important;
}

#shopify-section-template--29129494430033__section_gkTYQ8 ul {
	text-align: center;
	list-style-position: inside;
	padding: 0px;
	margin: 0px;
}

#shopify-section-template--29129494430033__section_gkTYQ8 ul li {
	text-align: center;
}


#shopify-section-template--29129494430033__section_cJmKL4 ul li {
	list-style-position: inside;
	text-align: center;
	padding: 0 !important;
	margin: 0 !important;
}


#shopify-section-template--29129494430033__section_cJmKL4 ul {
	margin: 0px;
	padding: 0px;
}
#shopify-section-template--29129494430033__section_cJmKL4 h3 {
	text-align: center !important;
}

  .banner-flex-box {
  padding: 20px 10px 10px !important;
}
  #shopify-section-template--29129494430033__section_8DHtBY {
	padding: 10px 0px !important;
}
  #shopify-section-template--29129494430033__section_9GaR4C ul li {
	list-style-position: inside;
	text-align: center;
	padding: 0px !important;
	margin: 0px !important;
}

#shopify-section-template--29129494430033__section_9GaR4C ul{
padding: 0px !important;
}
  #shopify-section-template--29129494430033__section_9GaR4C h3 {

	text-align: center!important;
}
  #shopify-section-template--29129494430033__section_ViC4bn h3 {
	text-align: center !important;
	}

.section.section--page-width.color-scheme-4 .spacing-style.text-block.h4 p {
	
	line-height: 1.4;
}
  #shopify-section-template--29129494430033__slideshow_VjRQcd .spacing-style.text-block.text-block--AYzFXeXRiZ1ZlaldvR__text_64T4E4.rte.text-block--align-left.text-block--full-width p {
	text-align: center !important;
	margin: auto;
}
  #shopify-section-template--29129494430033__slideshow_VjRQcd .slide__content h1 {

	text-align: center;
}

#shopify-section-template--29129494430033__section_ViC4bn ul {
	margin: 0px;
	padding: 0px !important;
}

#shopify-section-template--29129494430033__section_ViC4bn ul li {
	text-align: left;
	list-style-position: inside;
	font-size: 15px;
}

  .color-scheme-1 .spacing-style.slide__content.color-scheme-6.background-transparent {
	width: 100%;
}
.color-scheme-1 .spacing-style.slide__content.color-scheme-6.background-transparent .spacing-style.text-block.h4 {
  margin: auto;
}
  #shopify-section-template--29123371204945__section_PYRH8E ul li {
	font-size: 15px;

	text-align: center;
	list-style-position: inside;
}

  #shopify-section-template--29123371204945__section_q6LPUx .size-style.button {
	text-align: center;
	margin: auto !important;
}
  .casavera-gallery {
  width: 100px;
}

  #shopify-section-template--29123371204945__slideshow_VjRQcd .spacing-style.text-block.text-block--AcGRLeCs4Y0FmOVA3W__text_wTrgEN h1 {
	font-size: 28px !important;
}

#shopify-section-template--29123371204945__slideshow_VjRQcd .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
	padding: 50px 30px 30px;
}
#shopify-section-template--29123371204945__slideshow_VjRQcd .group-block-content {
	width: 100% !important;
	/* background-color: #000; */
}

  slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  margin-left: 0 !important;
  padding-right: 0px;
} 
  .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  margin-left: 0%;
}
#shopify-section-template--29030055510353__slideshow_VjRQcd .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
}
#shopify-section-template--29030055510353__slideshow_VjRQcd {
  background-position: left !important;
}
#shopify-section-template--29030055510353__slideshow_VjRQcd img {
  object-fit: cover;
  object-position: left;
}
  .gallery-thumbs img {
    height: auto !important;
  }
  .spacing-style.text-block.h5 p {
  font-size: 18px;
  }
#shopify-section-template--28917386871121__section_mG9qTj .rte p {
    min-height: auto;
}
.spacing-style.text-block.text-block--AQXBnRm9aOUp3amErY__text_HJyViy.rte.text-block--align-center {
  width: 90%;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column p {
  text-align: right !important;
}

  .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
    --vertical-alignment: center !important;
    --vertical-alignment-mobile: center !important;
  }
.spacing-style.text-block.text-block--AYStLajQ5STdLa1B5S__text_X4UqnW.custom.text-block--align-center.text-block--full-width.custom-typography.custom-font-size.custom-color, .spacing-style.text-block.text-block--AVWRKUnRTSDN1NHVVV__text_tCcGFT.rte h1 {
  width: 90%;
  font-size: 35px;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh slideshow-slide .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column p {
  text-align: center !important;
    margin: auto !important;
    width: 80% !important;
}
  .menu-drawer__navigation a {
  font-size: 15px;
  padding: 0px !important;
  display: block;
}
.menu-drawer__list-item span {
  font-size: 16px;
    text-transform: capitalize;
    font-family: Futura !important;
}
.spacing-style.text-block.text-block--AQWE5Q3UxTFkzcWFVc__text_BtjVhJ.rte.text-block--align-center p {
  width: 100%;
}
#shopify-section-template--28917386871121__section_haDNAE .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column a {
  width: 40% !important;
  margin: auto !important;
}
.spacing-style.text-block p {
  font-size: 15px;
  text-align: center;
  margin: auto;
}
.size-style.button {
  font-size: 16px;
  margin: auto;
}
#shopify-section-template--28917386871121__section_4AnkxM .group-block-content.layout-panel-flex.layout-panel-flex--row img {
  margin: auto;
}
#shopify-section-template--28917386871121__section_4AnkxM .group-block-content.layout-panel-flex.layout-panel-flex--row {
  display: block;
  margin: 0px 10px !important;
  width: auto;
}
#shopify-section-template--28917386871121__section_4AnkxM .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
  width: fit-content;
  display: block ruby;
}
#shopify-section-template--28917386871121__collection_list_q69iNL .slideshow-control.slideshow-control--next.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent, #shopify-section-template--28917386871121__collection_list_q69iNL .slideshow-control.slideshow-control--previous.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent.flip-x, .slideshow-control.slideshow-control--next.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent, .slideshow-control.slideshow-control--previous.slideshow-control--shape-circle.slideshow-control--style-arrow.button.button-unstyled.button-unstyled--transparent.flip-x {
  background-size: 30px;
  padding: 30px !important;
}
#shopify-section-template--28917386871121__section_mG9qTj .size-style.button {
  margin-top: 0px;
  margin-bottom: 40px;
}
.spacing-style.text-block.text-block--AYnhnRU1xejdQZmgwa__text_fMMXmU.rte.text-block--align-left.text-block--full-width {
  margin: -30px 0px 20px;
  position: relative;
  top: 0px;
}
#shopify-section-template--28917386871121__section_byF3nt .section.section--page-width.color-scheme-1 img {
  width: 50px;
  margin: auto;
}
#shopify-section-sections--28917387297105__section_Gb6rtR .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--row img {
  width: 40px;
}
#shopify-section-template--28917386871121__section_byF3nt .section.section--page-width.color-scheme-1 .image-block {
  margin: auto;
}
#shopify-section-template--28917386871121__section_byF3nt .spacing-style.text-block {
  text-align: center !important;
  margin: auto;
}
#shopify-section-template--28917386871121__section_byF3nt .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column .rte p {
  min-height: auto;
}
#shopify-section-template--28917386871121__section_byF3nt .image-block::after{
  display: none !important;
}
#shopify-section-template--28917386871121__section_cfpngT .spacing-style.text-block h4 {
  text-align: center;
}
  #shopify-section-template--28917386871121__slideshow_GYGrVh slideshow-slide:nth-child(1) .color-scheme-6 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column p {
    text-align: center !important;
  }
.section-wrapper {
  padding: 25px 0;
}
#shopify-section-sections--28917387297105__section_Gb6rtR {
  padding: 30px 0 0;
}
#shopify-section-template--28917386871121__section_mG9qTj .spacing-style.text-block.h4 p {
  padding: 0px 0;
}

#shopify-section-template--29015669965137__section_CkbxmG .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding: 5% 0% 5% 0%;
}
#shopify-section-template--29015669965137__section_xmgN4G .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
  padding: 5% 0% 5% 0%;
}
#shopify-section-template--29015669965137__section_HYQDct .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
  padding: 5% 0% 5% 0%;
}
.background-image-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #2b2b2bad;
}
 #shopify-section-template--29015669965137__section_q6LPUx .spacing-style.text-block.rte p {
    min-height: auto;
    width: 100% !important;
  }
   .section.section--page-width {
    padding: 0 10px;
  }
  #shopify-section-template--29015669965137__section_QwXPr8 .border-style.custom-section-content, #shopify-section-template--29123371204945__section_HX7di7 .border-style.custom-section-content {
  padding: 20px;
}
.table-wrapper {
  padding-bottom: 20px;
}
  .section.section--page-width.color-scheme-4 .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child .spacing-style.text-block.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
    min-height: auto;
  }
    #shopify-section-template--28917386871121__slideshow_GYGrVh .spacing-style.slide__content.color-scheme-6.background-transparent h1 {
    width: 100%;
    }
    .color-scheme-1 .color-scheme-6.background-transparent .spacing-style.text-block {
  padding: 0;
  margin: 0px auto;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .size-style.button-secondary {
  margin: auto auto 0px auto !important;
  top: 10px;
}
.size-style.button-secondary.button-secondary--AKzQ4Rm9yam90NnRpZ__button_KnnDzm {
  top: 0px !important;
}
.spacing-style.text-block.text-block--AWFljT29RMDhNZ0Vyd__text_wTrgEN.rte.text-block--align-left.text-block--full-width h1 {
  text-align: center;
}
.spacing-style.text-block.text-block--AZC9zOVlzTHZDVmdKM__text_UjXnwP.h3 {
  text-align: center !important;
  margin: auto;
}
.spacing-style.text-block.text-block--AOVpEYlVWTlg0UUZCM__text_64T4E4.rte p {
  margin: auto !important;
  text-align: center !important;
}
#shopify-section-template--29015669965137__slideshow_VjRQcd .slide__image {
  object-position: left !important;
}
#shopify-section-template--29015669965137__slideshow_VjRQcd {
  background-position: 0px;
}
.spacing-style.text-block.text-block--AdUl0TTI2UlpycmY1R__text_JHXCHQ.rte.text-block--align-center.text-block--full-width {
  width: fit-content !important;
}
#shopify-section-template--29150234968401__slideshow_VjRQcd .section {
	display: unset;
	top: -29px;
}
 #shopify-section-template--28917386871121__section_jrj9tk .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
    padding: 5% 15px;
  }
  #shopify-section-template--29150234968401__section_xmgN4G .border-style.custom-section-content {
	padding-left: 0px;
}
/* ================= MOBILE ================= */

#shopify-section-sections--28917387264337__custom_liquid_xqxRnR a {
	position: absolute;
	top: -31px;
	z-index: 999;
	border: 1px solid #2B2B2B;
	padding: 3px 10px;
	left: 0px;
	right: 0px;
	width: fit-content;
	text-align: center;
	margin: auto;
	font-size: 13px;
	color: #fff;
	border: none !important;
}
#shopify-section-sections--28917387264337__custom_liquid_xqxRnR a:hover{
color: #fff !important;
background-color: transparent;
}

.dek{
  display: none !important;
}
  .header-container {
    position: relative;
  }

  .mobile-phones {
    display: flex;
    gap: 15px;
  }

  .phone-icon {
    font-size: 20px;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

   .mobile-menu1 {
    display: block;
    position: relative;
  }

  .menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;color: #fff !important;
  }

.menu-toggle1 {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;color: #fff !important;
  }

  .mobile-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 33px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    min-width: 210px;
    border-radius: 6px;
    z-index: 999;
  }

    .mobile-dropdown1 {
    display: none;
    position: absolute;
    right: 0;
    top: 33px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    min-width: 220px;
    border-radius: 6px;
    z-index: 999;
  }

  .mobile-dropdown a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #2b2b2b;
    font-size: 12px !important;
  }

   .mobile-dropdown1 a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #2b2b2b;
    font-size: 12px !important;
  }
.menu-drawer__menu-item--mainlist:hover {
  color: var(--primary-green-dark) !important;
}
.headcontact-info-top a:hover {
	color: unset!important;
}
.headcontact-icons-outer a:hover {
	background-color: transparent !important;
	color: unset !important;
}
  .mobile-dropdown a:hover {
    background: var(--primary-green-dark);
    color:#fff;
  }

  .mobile-dropdown.active {
    display: block;
  }
   .mobile-dropdown1.active {
    display: block;
  }
  .mobile-phones i {
  color: #fff;
  font-size: 12px;
}
 .product-card__content.layout-panel-flex.layout-panel-flex--column.product-grid__card.spacing-style.border-style.gap-style .spacing-style.text-block p {
    text-align: left;
  }
  .spacing-style.text-block.text-block--AYStLajQ5STdLa1B5S__text_X4UqnW.custom.text-block--align-center.text-block--full-width.custom-typography.custom-font-size.custom-color {
  width: 100%;
}
#shopify-section-template--28917386871121__section_jrj9tk {
  padding: 30px 0 0;
}
#shopify-section-template--28917386871121__section_jrj9tk .section.section--page-width.color-scheme-6 {
  padding: 0px 0;
}
#shopify-section-template--28917386871121__section_haDNAE .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  margin: auto !important;
  width: 100%;
  display: inline-flex;
}
#shopify-section-template--28917386871121__section_mG9qTj .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style:last-child .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column {
  width: 100%;
}
#shopify-section-sections--28917387297105__section_4rjMHw {
  padding: 0 0 0px;
}
#shopify-section-sections--28917387297105__section_PUCKjJ {
  padding-bottom: 20px;
}
.slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
  padding: 20px;
}
.spacing-style.text-block.text-block--AWncyeTZ6ckdwK0lDc__text_NmUDaM.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p, .spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
  min-height: auto;
}
 .spacing-style.text-block.text-block--ARzNSbFhiRTBOeFdKT__text_j6Q4qt.custom.text-block--align-left.text-block--full-width.custom-typography.custom-font-size.custom-color p {
    min-height: auto;
  }
  .img-box-left {
  width: 100% !important;
  position: relative !important;
  }
    .img-box-right {
    width: 100% !important;
    height: auto !important;
  }
#shopify-section-template--29015669965137__slideshow_VjRQcd .rte p {
  width: auto;
}

.casavera-wrapper {
  gap: 5px;
  padding: 10px 0;
}
#shopify-section-template--29150234968401__slideshow_VjRQcd .slide__content {
	width: auto;
	padding: 20px 20px 30px !important;
	text-align: center;
	margin: anchor-size;
}
 
#shopify-section-template--29150234968401__slideshow_VjRQcd h1 {
	font-size: 25px;
	text-align: center;
}
 
#shopify-section-template--29150234968401__slideshow_VjRQcd .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column p {
	text-align: center !important;
}
  #shopify-section-template--29138975883601__section_qyAfK8 .group-block-content::after, #shopify-section-template--29123371204945__section_kz36Hm .group-block-content::after {
    width: 100%;
  }
  .slide__image-container::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #2b2b2bad;
  z-index: 1 !important;
  left: 0px;
  right: 0px;
  height: 100%;
  top: 0px;
}
#shopify-section-template--29123371204945__section_yJtGkT .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style, #shopify-section-template--29710972551505__section_CUgGRh .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style{
  width: 100%;
}
#shopify-section-template--29138975883601__section_HYQDct .group-block-content::after, #shopify-section-template--29123371204945__section_yJtGkT .group-block-content::after, #shopify-section-template--29220043915601__section_c6EqpE .group-block-content::after, #shopify-section-template--29710972551505__section_CUgGRh .group-block-content::after{
  width: 100% !important;
}
  .slideshow--content-on-media .spacing-style.slide__content.color-scheme-6.background-transparent {
    padding: 50px 10px 30px;
  }
  .image-block.image-block--AUGQzSmlITm5IbzVOe__image_nDJhg4.image-block--height-fit.spacing-style.size-style {
    padding-bottom: 0px;
  }
  #shopify-section-template--29204643512657__slideshow_VjRQcd .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  width: 100%;
}
.color-scheme-6 .slide__image-container::after{
  width: 100%;
}
.spacing-style.text-block.text-block--AM0t3Vm1yZnpraFRjU__text_wTrgEN.rte.text-block--align-left.text-block--full-width h1 {
  text-align: center;
  margin: auto;
}
.wishlist-hero-items-count.wishlist-hero-items-count-text-plain.cart-count-bubble.wishlist-hero-header-show-count-only.wishlist-hero-items-count-exists {
  top: 5px;
  padding: 0 5px;
  width: 16px;
  height: 16px;
  font-size: 10px;
}
.spacing-style.text-block.text-block--ATXZwcXIvVU42RWMva__text_fPErPr.h4.text-block--align-center.text-block--full-width {
  padding-bottom: 10px;
}
.spacing-style.text-block.text-block--AY1l6OE5VN2FqcXpET__text_bj6MRY.rte.text-block--align-left.text-block--full-width {
  padding: 0 0px;
  margin-top: 0px;
}
#shopify-section-template--29129494430033__section_VNARdy .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column, #shopify-section-template--29129494430033__section_6QhyqA .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column {
  padding: 0 0px;
}
.spacing-style.text-block h4 {
  font-size: 20px;
  text-align: center;
}
#shopify-section-template--28917386871121__section_cfpngT .image-block img {
  height: auto;
}
.color-scheme-6 .spacing-style.slide__content.color-scheme-6.background-transparent .rte h1 {
  font-size: 34px;
  text-align: center;
}
.section.section--page-width.color-scheme-4 .image-block__image {
  height: auto;
}
#product-recommendations-template--28917387100497__product_recommendations_qggXJq {
	padding: 90px 0px;
}

.size-style.button.button--AanRpTGU0N0VaekhUN__button_WtdEhe, .size-style.button.button--AZFgrcFJrdEJmaEhBa__button_Ae3x9d,
.size-style.button.button--ASmg5ZlliUENkSzRaN__button_ihXyBy, .size-style.button.button--Adkh5ak54ZHFOMFZ1b__button_bFEM7f,
.size-style.button.button--AOHVSc3NVL0czQnlBO__button_yWXpEK, .size-style.button.button--AVFJKdHFudjNEWEcwV__button_eDLAQL {
	margin-top: 10px; width:50% !important;
}
.hsfc-Step__Content {
	padding: 0 !important;
}
.product-navigation .nav-btn {
    padding: 10px 10px;
}
.spacing-style.text-block.text-block--AYzZKc09wNG03cmNzY__text_xfRULQ.rte h3  {
  font-size: 27px;
  width: auto;
  padding-right: 0px;
  text-align: center !important;
}
.spacing-style.text-block.text-block--AYzZKc09wNG03cmNzY__text_xfRULQ.rte {
  display: block !important;
  margin: auto;
  padding-bottom: 20px;
}
#shopify-section-template--29244470264145__section_9HiQ3P .spacing-style.text-block.h6 p{
  display: none !important; 
}
.spacing-style.text-block.text-block--AVW9tVjZhb2JEMmRlL__text_LMYFAW.rte p {
  padding-right: 20px;
}
#shopify-section-template--29392386261329__section_QMV7BC h3 {
  position: absolute;
  left: 0px;
  color: var(--primary-green-dark);
  font-size: 60px;
  top: 0px;
  margin: auto;
  right: 0px;
}
#shopify-section-template--29392386261329__section_QMV7BC .spacing-style.text-block.rte{
  text-align: center;
  margin: auto;
}
#shopify-section-template--29392386261329__section_QMV7BC .spacing-style.text-block.rte h6 {
  position: relative;
  top: -60px;
}
#shopify-section-template--29392386261329__section_QMV7BC .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content{
   border: none !important;
}
#shopify-section-template--29392386261329__section_QMV7BC .spacing-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block:first-child{
  border-right: 0px solid var(--primary-green-dark);
}
#shopify-section-template--29392386261329__section_9HiQ3P .group-block-content .group-block .group-block-content {
  border: none !important;
}
.spacing-style.text-block.h6 h3 {
  text-align: center !important;
}
#shopify-section-template--29392386261329__section_UXfCRY .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  padding: 5% 2% 5% 0% !important;
}
.comparison-table td div span {
  /* margin-left: 20px !important; */
}
.spacing-style.text-block h6 {
  text-align: center !important;
}
#shopify-section-template--29392386261329__section_QMV7BC .spacing-style .group-block .group-block-content .group-block:first-child .group-block-content .group-block:first-child {
  border-right: 0px solid var(--primary-green-dark) !important;
}
#shopify-section-template--28917387034961__section_npp9CV p, #shopify-section-template--29428671480145__section_npp9CV p, #shopify-section-template--29475433611601__section_npp9CV p {
  border-bottom: 1px solid #00352F;
  width: 100%;
  padding: 20px 0px;
  border-right: 0px solid #00352F;
}
.spacing-style.text-block.text-block--AZlJtV0g2b05hVUpUe__text_ndpPcL.rte.text-block--align-center p{
  border-bottom: none !important;
}
/* #shopify-section-template--28917387034961__section_npp9CV p, #shopify-section-template--29428671480145__section_npp9CV p, #shopify-section-template--29475433611601__section_npp9CV p {
  
  padding: 10px 0px;
} */
.spacing-style.text-block.text-block--Ac0hRVStUeVlzZzZ6a__text_4m4iD9.rte.text-block--align-center h3, .spacing-style.text-block.text-block--AUnZtdTBaQXlWQVJ5a__text_4m4iD9.rte.text-block--align-center h3, .spacing-style.text-block.text-block--ATUdYSlhDaWdsZ0dER__text_4m4iD9.rte.text-block--align-center h3 {
  display: block;
  font-size: 20px;
}
#shopify-section-template--28917387034961__section_npp9CV, #shopify-section-template--29428671480145__section_npp9CV, #shopify-section-template--29475433611601__section_npp9CV p {
  background-color: #F2EDE5;
  padding-bottom: 0px !important;
}
#shopify-section-template--28917387034961__section_npp9CV .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29428671480145__section_npp9CV .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column, #shopify-section-template--29475433611601__section_npp9CV .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column{
  margin-top: -6px;
}
 .spacing-style.text-block.h3 h3 {
    font-size: 24px;
 }
 .spacing-style.text-block.rte {
  margin: auto;
}
.spacing-style.text-block {
  margin: auto;
}
.spacing-style.text-block h3 {
  margin: auto;
  text-align: center;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh slideshow-container .spacing-style.slide__content.color-scheme-6.background-transparent{
  height: auto;
}
#shopify-section-template--29135227781457__section_VdHbEx .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content, 
#shopify-section-template--29129494430033__section_4Nia3e .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content, 
#shopify-section-template--29135198650705__section_mpLENR .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content, 
#shopify-section-template--29135227814225__section_FgPwMj .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content, 
#shopify-section-template--29135198126417__section_74c7p3 .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content,
#shopify-section-template--29135167750481__section_NzEkKR .border-style .group-block .group-block-content .group-block:last-child .group-block-content .group-block .group-block-content {
  border-bottom: 1px solid #00352F;
  border-right: none !important;
  padding-bottom: 20px;
}
  #shopify-section-template--29451784356177__section_CmR7wb .group-block .group-block-content .group-block:first-child .group-block-content .group-block {
    padding: 0px 0px 20px;
    border-right: none;
  }
  #shopify-section-template--29451784356177__section_CmR7wb .group-block .group-block-content .group-block:last-child .group-block-content .group-block {
  border-right: none;
  padding: 0px 0px 20px;
  border-bottom: 1px solid;
}
#shopify-section-template--29451784356177__section_xF87pE .group-block-content .spacing-style.text-block {
  padding: 20px 0px;
}
#shopify-section-template--29451784356177__section_xF87pE .group-block .group-block-content .group-block:last-child .group-block .group-block-content .spacing-style {
  border-bottom: 1px solid !important;
}
.spacing-style.text-block.text-block--AclVqWHJIeElmRW03K__text_MAkjzL.rte.text-block--align-left ul li:first-child {
  /* border-top: 1px solid; */
  margin-top: 30px;
}
#shopify-section-template--29451784356177__section_xF87pE .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
  padding: 0px;
}
#shopify-section-template--29451784356177__section_QMV7BC .group-block .group-block-content .group-block .group-block-content .group-block {
  border-right: 0px solid var(--primary-green-dark);
  border-bottom: 1px solid var(--primary-green-dark);
  padding-bottom: 20px;
}
#shopify-section-template--29451784356177__section_z8ydUW .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
  margin: auto;
  display: grid;
}
 #shopify-section-template--29451784356177__section_z8ydUW .border-style.custom-section-content .spacing-style .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content {
    padding: 20px !important;
  }
  .spacing-style.text-block.text-block--AVE5QUkp1V0FwcDFpV__text_kpGhcr.rte.text-block--align-left.text-block--full-width em {
  padding: 10px 0px;
  display: block;
}
.spacing-style.text-block.text-block--AMERtQ3NEaE9nT0Z2W__text_7xTBNn.rte.text-block--align-center.text-block--full-width h4, .spacing-style.text-block.text-block--AbjM2VzI0NjBhRTYzR__text_pQBTK4.rte.text-block--align-center h4 {
  font-size: 24px;
  width: 100% !important;
}
.spacing-style.text-block.text-block--AMUFZRU0yS1d6UW1GR__text_nmEi8f p {
  width: 100%;
  margin-bottom: 0px;
}
  #shopify-section-template--29451784356177__section_xF87pE .group-block-content .spacing-style.text-block {
    padding: 20px 0px;
    border-right: none;
  }
    #shopify-section-template--29500138193233__section_9HiQ3P .group-block-content .group-block .group-block-content .rte.text-block--align-center h5::after {
    display: none;
  }
  #shopify-section-template--29500138193233__section_N97wfP .group-block .group-block-content .group-block:last-child .group-block-content .group-block:last-child .spacing-style.text-block ul li {
  text-align: left;
}
#shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block .group-block-content .group-block:first-child .spacing-style.text-block ul li {
  color: #fff;
}
#shopify-section-template--29015669965137__custom_liquid_UBHK4P, 
#shopify-section-template--29123371204945__custom_liquid_nWGdxE, 
#shopify-section-template--29220043915601__custom_liquid_47gDAf, 
#shopify-section-template--29208321163601__custom_liquid_kkAnYp, 
div#shopify-section-template--29220043915601__custom_liquid_47gDAf {
  background-color: #F2EDE5;
  padding-bottom: 0px !important;
}
#shopify-section-template--29333080572241__custom_liquid_eGgUB9, 
#shopify-section-template--29517834322257__custom_liquid_eGgUB9 {
  background-color: #f2ede5;
}
 .spacing-style.text-block.text-block--AVlFSSTZzQlZhc1lXS__text_b7RRay.rte.text-block--align-left p {
    min-height: auto !important;
  }
   .comparison-table th {
    font-size: 20px;
  }
  .table-wrapper::after {
    content: "Scroll here";
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #f2ede5;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--primary-green-dark);
    position: absolute;
    bottom: 50%;
    right: 20px;
    padding: 3px 5px;
  }

/* .section.section--page-width.color-scheme-6 .slide__image-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #2b2b2bcf;
  top: 0;
  z-index: 1;
} */
.menu__details.spacing-style {
  padding-bottom: 20px;
}
.menu__heading.h4 {
  padding: 5px 0px 0px;
}
.comparison-table td div {
  padding-left: 0px;
}
.spacing-style.text-block.text-block--ASFpkWG5kUjZuTTZVU__text_eXdCkm.rte.text-block--align-center {
  padding: 0px 0px 10px;
  margin-top: -30px;
}
#shopify-section-template--29129494430033__section_gz8LBh {
  background-color: #faf5ed;
}
.menu-drawer__menu-item.menu-drawer__menu-item--child.focus-inset img {
  display: none;
}
.menu-drawer__inner-submenu ul li {
  margin: 6px;
}
.menu-drawer-container[open] .menu-drawer__animated-element{
  align-content: center;
}
.svg-wrapper.icon-caret.icon-caret--forward {
  padding: 0px;
}
.menu-drawer__navigation {
  padding-top: 20px !important;
}
.button.close-button.menu-drawer__close-button {
  margin-top: 10px;
}
.menu-drawer__submenu.has-submenu {
  margin-top: 20px;
}
.menu-drawer__submenu.has-submenu .button.menu-drawer__back-button.focus-inset {
  padding-bottom: 0px;
}
.menu-drawer__submenu.has-submenu .button.button-unstyled.close-button.menu-drawer__close-button {
  opacity: 0;
}
.p-color-box .pf-heading-1-h4, .white-bg-sec .pf-heading-1-h4 {
  font-size: 22px !important;
  padding-bottom: 10px;
}
.p-color-box .pf-text-1, .white-bg-sec .pf-text-1 {
  margin-bottom: 20px !important;
}
.svg-wrapper.icon-caret.icon-caret--forward svg {
  width: 20px !important;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content .spacing-style.text-block p {
  text-align: left;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul {
  grid-template-columns: repeat(2, 1fr) !important;
  display: grid !important;
}
#HeaderDrawer-furniture .svg-wrapper.icon-caret.icon-caret--forward {
  opacity: 0 !important;
}
#shopify-section-template--29135198650705__section_4jPXLT, 
#shopify-section-template--29135198650705__section_QUmtQL, 
#shopify-section-template--29135198650705__section_8xbc4j {
  background-color: #faf5ed;
  padding-bottom: 30px;
}
.page-id-163222454609 .text-block--align-left.h4 p, .page-id-163204104529 .text-block--align-left.h4 p, .page-id-163222389073 .text-block--align-left.h4 p, .page-id-163222225233 .text-block--align-left.h4 p, .page-id-163222356305 .text-block--align-left.h4 p, .page-id-163222323537 .text-block--align-left.h4 p {
    padding-bottom: 10px !important;
    
  }
  #shopify-section-template--28917387002193__section_e9emwp .cv-form-wrap {
  min-width: auto;
  padding: 30px 40px !important;
}
#shopify-section-template--28917387002193__section_e9emwp .spacing-style .group-block {
  background-color: #f2ede5;
  padding: 30px 30px 0px;
}
#MainContent {
  padding-top: 30px;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh slideshow-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #2b2b2bad;
  z-index: 0 !important;
  left: 0px;
  right: 0px;
  height: 100%;
  top: 0px;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh .slide__image-container.slide__image-container--rounded::after {
  display: none !important;
}
.spacing-style.text-block.text-block--AcUVwMmtFQnl5S21OZ__text_YNeBaB.rte h1, .spacing-style.text-block.text-block--AcUVwMmtFQnl5S21OZ__text_YNeBaB.rte h1 strong, .spacing-style.text-block.text-block--AWDErUGZWRzZkaVdYc__text_pYmaRT.rte p {
  color: #fff !important;
}

.slideshow-controls__dots {
  position: relative;
  bottom: 0px !important;
}
slideshow-controls{
  position: absolute;
  bottom: -50px !important;
}
 /* #shopify-section-template--28917386871121__section_4AnkxM 
  .group-block.group-block--height-fit.group-block--width-fill {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  #shopify-section-template--28917386871121__section_4AnkxM 
  .group-block-content {
    width: 50% !important;
  } */
    #shopify-section-template--28917386871121__section_TBhpiD .product-card__content.layout-panel-flex.layout-panel-flex--column.product-grid__card.spacing-style.border-style.gap-style .spacing-style.text-block p {
    text-align: center;
  }
   #shopify-section-template--28917386871121__collection_list_q69iNL slideshow-container, #shopify-section-template--28917386871121__featured_blog_posts_dL9JeQ slideshow-container {
    padding: 0px 20px !important;
  }
   .page-width-narrow.card-hover-effect-none.template-index .section.section--page-width {
    padding: 0 0px;
  }
  #shopify-section-template--29392386261329__section_geNhgT .spacing-style .group-block {
  width: 100% !important;
}
#shopify-section-template--28917386871121__section_TBhpiD a.contents.user-select-text p {
  min-height: auto !important;
  font-size: 15px !important;
}
span.header-logo__image-container.header-logo__image-container--original img {
        width: 80px;
    }
    #shopify-section-template--29204643512657__section_4Nia3e .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style.color-scheme-4,
    #shopify-section-template--29347557572945__section_4Nia3e .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style.color-scheme-4 {
  border-color: transparent !important;
  display: none !important;
}
.menu-drawer__menu--grid:has(.menu-drawer__link-image) .menu-drawer__menu-item:not(:has(>.menu-drawer__link-image)):before{
  display: none;
}
 #shopify-section-template--29597782278481__section_qEi3dV, 
 #shopify-section-template--29614975615313__section_qEi3dV, 
 #shopify-section-template--29615244476753__section_qEi3dV{
  padding-top: 30px !important;
 }
 .template-product.product .product-information__grid.product-information--media-left .product-details {
  padding-top: 30px;
}
.template-product.product slideshow-component {
  padding-bottom: 10px;
}

/* .product-information__grid.product-information--media-left.product-information__grid--half slideshow-component{
padding-bottom: 120px;
} */
.slideshow-controls__thumbnails-container {
    mask-image: none !important;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child div .group-block, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:first-child div .group-block, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:first-child div .group-block {
    padding: 0px 20px;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content {
    padding: 10px 20px 14px;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:first-child .group-block-content, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content {
	--horizontal-alignment: flex-start;
	--vertical-alignment: top !important;
	--vertical-alignment-mobile: top !important;
}
#shopify-section-template--29244362162513__section_njF8Qb .border-style.custom-section-content .spacing-style .group-block, #shopify-section-template--29244470264145__section_3MF6Dz .border-style.custom-section-content .spacing-style .group-block {
  --size-style-width: auto !important;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li{
  font-size: 12px !important;
}
.template-product.product .product-media-constraint-wrapper {
  margin-bottom: 60px;
}
/* .product-media-container.media-fit-cover.product-media-container--image.product-media-container--zoomable {
  margin-bottom: 110px;
} */

 [data-template="product.lighting-square-image"] .product-media-container.media-fit-cover.product-media-container--image.product-media-container--zoomable {
  margin-bottom:8 95px;
}

.dialog-zoomed-gallery {
  width: 95% !important;
}
#shopify-section-template--29710972551505__section_bCkCFj p{
  padding-right: 0px !important; 
}
#shopify-section-template--29710972551505__section_CUgGRh .group-block-content{
  padding: 5% !important;
  text-align: center;
}
#shopify-section-template--29710972551505__custom_liquid_9VYgiU .group-block-content .spacing-style.text-block p {
    padding: 20px 0px;
  }
  #shopify-section-template--29204643512657__slideshow_VjRQcd .color-scheme-1 .spacing-style.slide__content.color-scheme-6.background-transparent .spacing-style.text-block.h4 {
  margin: 0px !important;
}
#shopify-section-template--29138975883601__section_HYQDct .group-block-content, 
#shopify-section-template--29123371204945__section_yJtGkT .group-block-content, 
#shopify-section-template--29220043915601__section_c6EqpE .group-block-content, 
#shopify-section-template--29710972551505__section_CUgGRh .group-block-content{
  height: auto;
  padding: 30px !important;
}
.comparison-table th:nth-child(3) {
  width: 20%;
}
.menu-drawer__menu--grid:has(.menu-drawer__link-image) .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image))::before{
  display: none;
  }
  .menu-drawer__list-item--deep .menu-drawer__menu, .menu-drawer__menu--grandchildlist {
  display: block;
}
#shopify-section-template--28917386871121__section_4AnkxM .section.section--page-width.color-scheme-1 .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper{
 display: grid;
    grid-template-columns: 2fr 1fr;
}
 #shopify-section-template--28917386871121__section_4AnkxM p {
    font-size: 16px;
    padding-top: 10px;
  }
   #shopify-section-template--28917386871121__section_4AnkxM .section.section--page-width.color-scheme-1 .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper {
    gap: 30px !important;
    padding: 0px 80px!important;
  }
  #shopify-section-template--28917386871121__section_4AnkxM {
  padding-bottom: 0px;
}
#shopify-section-template--29392386261329__section_geNhgT .group-block {
  padding: 0px 10px !important;
}
#shopify-section-template--29392386261329__section_QMV7BC .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content {
  padding: 60px 0px;
}
.image-block.image-block--ASDVzL1ZwK21vcWV1d__image_3CwigK.image-block--height-fit.spacing-style.size-style {
  padding: 20px 0px;
}
#shopify-section-template--29282736603473__section_qEi3dV, 
#shopify-section-template--29288975761745__section_qEi3dV, 
#shopify-section-template--29287877935441__section_qEi3dV, 
#shopify-section-template--29289057550673__section_qEi3dV, 
#shopify-section-template--29300615741777__section_qEi3dV, 
#shopify-section-template--28917387002193__section_e9emwp, 
#shopify-section-template--29597782278481__section_qEi3dV, 
#shopify-section-template--29614975615313__section_qEi3dV, 
#shopify-section-template--29615244476753__section_qEi3dV, 
#shopify-section-template--29894054052177__section_qEi3dV, 
#shopify-section-template--29963397497169__section_qEi3dV, 
#shopify-section-template--29963805884753__section_qEi3dV {
  padding-top: 25px !important;
}
.spacing-style.text-block.text-block--AdUNOeHZwZHVJbk95K__text_VnwpUN.h3.text-block--align-center.text-block--full-width,
.spacing-style.text-block.text-block--ASGxBTm04TVN2NDVCQ__text_VnwpUN.h3.text-block--align-center.text-block--full-width,
.spacing-style.text-block.text-block--AN2ZISXJ2cStaOVNac__text_VnwpUN.h3.text-block--align-center.text-block--full-width,
.spacing-style.text-block.text-block--AQW5Bb25vMEd3bVZpO__text_VnwpUN.h3.text-block--align-center.text-block--full-width {
  padding-top: 25px;
}
#shopify-section-template--29282736603473__section_T4jfjz .spacing-style.layout-panel-flex img, 
#shopify-section-template--29288975761745__section_T4jfjz .spacing-style.layout-panel-flex img, 
#shopify-section-template--29287877935441__section_T4jfjz .spacing-style.layout-panel-flex img, 
#shopify-section-template--29282736603473__section_T4jfjz .spacing-style.layout-panel-flex img, 
#shopify-section-template--29300615741777__section_T4jfjz .spacing-style.layout-panel-flex img, 
#shopify-section-template--29597782278481__section_T4jfjz .spacing-style.layout-panel-flex img, 
#shopify-section-template--29615244476753__section_qEi3dV .spacing-style.layout-panel-flex img, 
#shopify-section-template--29614975615313__section_qEi3dV .spacing-style.layout-panel-flex img, 
#shopify-section-template--29894054052177__section_qEi3dV .spacing-style.layout-panel-flex img, 
#shopify-section-template--29963397497169__section_qEi3dV .spacing-style.layout-panel-flex img, 
#shopify-section-template--29963805884753__section_qEi3dV .spacing-style.layout-panel-flex img {
	margin: 0px 0px 10px !important
}

 #shopify-section-template--29500138193233__section_N97wfP .group-block:last-child .group-block-content .group-block .group-block-content .group-block:first-child .spacing-style.text-block ul li {
    text-align: left;
  }
  .text-block:not(.text-block--full-width).rte, .text-block:not(.text-block--full-width).paragraph {
	text-wrap: auto !important;
}

.icon-box {
  margin: auto;
}
#shopify-section-template--29500138193233__section_jy4Lnf .group-block .group-block-content .group-block {
  margin-top: 20px;
}
.menu-drawer__menu--grid {
  display: block !important;
}
.menu-drawer__menu--grid:has(.menu-drawer__link-image) .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image)) {
  display: none !important;
}
.menu-drawer__menu--grid:has(.menu-drawer__link-image) .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image))::before {
  display: none !important;
}
.image-block.image-block--AcXY5aytiN3hqZ2RWZ__image_KTpJUL.image-block--height-fit.spacing-style.size-style {
  padding-top: 30px;
}
.spacing-style.text-block.text-block--AclVqWHJIeElmRW03K__text_MAkjzL.rte.text-block--align-left {
  padding-left: 0px;
}
.job-desc {
  display: block !important;
}

#shopify-section-template--29392386261329__section_UXfCRY .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #2b2b2bcf;
  top: 0;
  z-index: 1;
}
#shopify-section-template--29392386261329__section_UXfCRY .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column *{
  z-index: 99 !important;
}
.spacing-style.text-block.text-block--AOWNYSEY4UXdsWjRpU__text_rMdMdM.rte.text-block--align-left.text-block--full-width {
  padding: 0px 20px;
}
/* #shopify-section-template--29123371204945__slideshow_CGHci9 .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column::after, 
#shopify-section-template--29123371204945__section_kz36Hm .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column::after,
#shopify-section-template--29123371204945__slideshow_EmrUBF .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column::after,
#shopify-section-template--29123371204945__section_yJtGkT.group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column::after{
    content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #2b2b2bcf;
  top: 0;
  z-index: -1;
} */
.color-scheme-6 .color-scheme-6 .slide__image-container::after {
  width: 100% !important;
}
accordion-custom p {
  text-align: left !important;
}
 .details__header {
    font-size: 18px !important;
    line-height: 1.3 !important;
    width: 100%;
    margin: 10px 0px;
  }
#shopify-section-template--29392386261329__section_rQfDFb{
  display: none !important;
}
  #shopify-section-template--29392386261329__section_gYBcxF {
    display: block !important;
    background-color: #faf5ed;
    padding: 0px;
    margin-top: 20px;
  }
.spacing-style.text-block.text-block--AZUJZTnhtZkhUVzA2U__text_7yNqyb.rte h3 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 4px;
  color: #08372e;
}
.spacing-style.text-block.text-block--AQTh5ZmhJdU44aVFrT__text_waQMDx.rte h6 {
  letter-spacing: 1px;
}
 .spacing-style.text-block.text-block--ATXZFVDZtM1ZDTXBFS__text_FjJpnA.rte ul {
    list-style: none;
    width: 100%;
  }
.spacing-style.text-block.text-block--ATXZFVDZtM1ZDTXBFS__text_FjJpnA.rte ul strong {
  display: block;
}
.spacing-style.text-block.text-block--AQTh5ZmhJdU44aVFrT__text_waQMDx.rte {
	background-color: #08372e;
	width: 100%;
	color: #fff;
	margin-top: -20px !important;
	padding: 10px;
	color: #c8a951;
	font-family: Baskervville;
	font-weight: 400 !important;
}
.spacing-style.text-block.text-block--ATXZFVDZtM1ZDTXBFS__text_FjJpnA.rte ul li {
  border-bottom: 1px solid #000;
  padding: 10px;
  width: 100%;
  margin: auto !important;
  text-align: center !important;
}
.page-admin-faq.page-id-163370336593 .spacing-style.text-block.h3 h3 {
  text-align: left !important;
}
#shopify-section-template--29177726828881__section_phXtyf .border-style.custom-section-content, #shopify-section-template--29177726828881__section_b3rryc .border-style.custom-section-content, #shopify-section-template--29177726828881__section_b3rryc .border-style.custom-section-content, #shopify-section-template--29177726828881__section_z3GHjx .border-style.custom-section-content, #shopify-section-template--29177726828881__section_jGz7bc .border-style.custom-section-content, #shopify-section-template--29177726828881__section_6tX3jr .border-style.custom-section-content, #shopify-section-template--29177726828881__section_RAmpWK .border-style.custom-section-content, #shopify-section-template--29177726828881__section_phCTcJ .border-style.custom-section-content, #shopify-section-template--29177726828881__section_RV6Lbh .border-style.custom-section-content {
	padding: 20px !important;
}
#shopify-section-template--29177726828881__section_4qTKL3 .border-style.custom-section-content, #shopify-section-template--29177726828881__section_kMKDfP .border-style.custom-section-content, #shopify-section-template--29177726828881__section_bhp7k4 .border-style.custom-section-content, #shopify-section-template--29177726828881__section_Tje4Xb .border-style.custom-section-content, #shopify-section-template--29177726828881__section_gPjHNJ .border-style.custom-section-content, #shopify-section-template--29177726828881__section_tgtJ36 .border-style.custom-section-content, #shopify-section-template--29177726828881__section_rdgq6J .border-style.custom-section-content, #shopify-section-template--29177726828881__section_iTNyg8 .border-style.custom-section-content {
	padding: 0px 20px !important;
}
summary .svg-wrapper {
  height: 16px !important;
  width: 16px !important;
}
#shopify-section-template--29475433611601__section_npp9CV,
#shopify-section-template--29138975883601__custom_liquid_9VYgiU {
  background-color: #f2ede5;
}
#shopify-section-template--29475433611601__section_npp9CV p {
    padding-bottom: 20px !important;
  }
   .template-product.product slideshow-component {
    padding-bottom: 120px;
  }
  ul li{
    text-align: left !important;
  }
  .pf-text-1 {
  text-align: center !important;
}
#shopify-section-template--29135167750481__section_T7cJwd .border-style.custom-section-content, #shopify-section-template--29135167750481__section_hd8xVD .border-style.custom-section-content, #shopify-section-template--29135167750481__section_QgD6Uq .border-style.custom-section-content, #shopify-section-template--29135167750481__section_RfTPa7 .border-style.custom-section-content, #shopify-section-template--29135227781457__section_pBb9pQ .border-style.custom-section-content, #shopify-section-template--29135227781457__section_ccgVDf .border-style.custom-section-content, #shopify-section-template--29135227814225__section_A6HCnM .border-style.custom-section-content, #shopify-section-template--29135198650705__section_8xbc4j .border-style.custom-section-content, #shopify-section-template--29135198650705__section_QUmtQL .border-style.custom-section-content, #shopify-section-template--29135198650705__section_4jPXLT .border-style.custom-section-content, #shopify-section-template--29135198650705__section_cCFRfw .border-style.custom-section-content {
	padding: 0px;
}
#shopify-section-template--29135198650705__section_8xbc4j {
  padding: 30px 0px;
}
#shopify-section-template--29135227781457__section_pBb9pQ,
#shopify-section-template--29135227781457__section_ccgVDf {
  background-color: #faf5ed;
  padding: 30px 0px;
}
.size-style.button.button--ATFA2VUZBZCtvTTJ3M__button_CkmRG3 {
  margin-bottom: 10px !important;
}
.size-style.button.button--AWEZFMEYrbG01WU1US__button_dft69e {
  margin-top: 10px !important;
}
.spacing-style.text-block.text-block--ATXZFVDZtM1ZDTXBFS__text_FjJpnA.rte {
  margin: 0px !important;
  display: block !important;
  width: 100%;
}
  .spacing-style.text-block.text-block--ATXZFVDZtM1ZDTXBFS__text_FjJpnA.rte ul {
    list-style: none;
    width: 100%;
  }
   #shopify-section-template--29392386261329__section_UXfCRY .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
    padding: 5% 7% 5% 8% !important;
  }
  .page-admin-faq.page-id-163370336593 .spacing-style.text-block.text-block--AaEx3Zyt4WFFxaXFqV__text_8yxQHf.h3 h3 {
    text-align: center !important;
  }
  .spacing-style.text-block.text-block--ARnJKRHZGQmNTdUpOZ__text_yGkMbE.h3.text-block--align-left.text-block--full-width h3 {
  text-align: center !important;
}
  }

@media screen and (max-width: 740px) {
.spacing-style.text-block.text-block--AM0ZTNmd3U0R6YkdsN__text_9ftkY9.h2.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--AU3FZb1BrNDZCUzlER__text_xWdAAX.h2.text-block--align-center.text-block--full-width p, .spacing-style.text-block.text-block--ANnVtM3FHT3FHd3hoW__text_9ftkY9.h2.text-block--align-center.text-block--full-width p{
  width: 96%;
  line-height: 1.5;
}
.menu-drawer__list-item #link-services ul li:last-child a span {
  display: block !important;
  width: 180px !important;
}
#shopify-section-sections--28917387264337__custom_liquid_xqxRnR a {
	position: absolute;
	top: -31px;
	z-index: 999;
	border: 1px solid #2B2B2B;
	padding: 3px 10px;
	border-radius: 4px;
	font-family: Futura;
	left: 0px;
	right: 0px;
	width: fit-content;
	text-align: center;
	margin: auto;
	font-size: 13px;
	color: #fff;
	border-color: #fff;
}
#shopify-section-sections--28917387297105__section_Gb6rtR .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--row {
  gap: 10px;
  padding-top: 30px;
}

.image-block.image-block--AMnRzeTZxMVgrbnVTS__image_mKqqMb.image-block--height-fit.spacing-style.size-style {
  margin: auto;
}
  .image-block.image-block--AUGQzSmlITm5IbzVOe__image_nDJhg4.image-block--height-fit.spacing-style.size-style {
    text-align: center;
    display: ruby;
    padding-bottom: 40px;
  }
  #shopify-section-template--29204643512657__section_4BtYDY .group-block-content.layout-panel-flex.layout-panel-flex--row .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
  margin-top: 0px;
  margin-bottom: 30px;
}
  #shopify-section-template--29204643512657__section_4Nia3e .spacing-style.layout-panel-flex.layout-panel-flex--column.section-content-wrapper.mobile-column .group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style:last-child {
    width: auto;
  }
  .image-block.image-block--AL3M0bVpVMnJtOWVVV__image_7Gf9ed.image-block--height-fit.spacing-style.size-style {
  display: contents;
}
.image-block.image-block--AL3M0bVpVMnJtOWVVV__image_7Gf9ed.image-block--height-fit.spacing-style.size-style img {
  width: 40%;
}
.product-navigation .nav-btn {
    padding: 10px 10px;
}
  #shopify-section-template--28917386871121__section_4AnkxM .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
    width: auto;
    display: block ruby;
  }

}

@media screen and (max-width: 468px) {
#shopify-section-template--29135167750481__section_hd8xVD {
  margin-top: 40px;
}
}

@media screen and (max-width: 560px) {
.template-collection p.product-id {
	text-align: left;
	position: relative;
	 font-size: 16px;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(3) .group-block-content, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(3) .group-block-content {
  padding: 10px 10px;
}
  #shopify-section-template--28917386871121__section_4AnkxM .section.section--page-width.color-scheme-1 .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper {
    padding: 0px 0px !important;
    gap: 0px !important;
    grid-template-columns: 1fr 1fr;
  }
    #shopify-section-template--28917386871121__section_4AnkxM p {
    font-size: 14px;
    padding-top: 10px;
    word-break: keep-all;

  }
   #shopify-section-template--28917386871121__section_4AnkxM .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
    width: fit-content;
    display: block ruby;
  }
   #shopify-section-template--28917386871121__section_4AnkxM .group-block-content.layout-panel-flex.layout-panel-flex--row {
    display: inline-block;
    padding: 10px 20px;
  }
  #shopify-section-template--28917386871121__section_4AnkxM .section.section--page-width.color-scheme-1 {
  width: 100%;
  display: block;
}
  #shopify-section-template--28917386871121__section_4AnkxM .border-style.custom-section-content .spacing-style.layout-panel-flex.layout-panel-flex--row.section-content-wrapper .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style {
    width: 100% !important;
    display: flex !important;
    margin: auto !important;
  }

}
@media screen and (max-width: 480px) {
  #shopify-section-template--29347557572945__slideshow_VjRQcd .spacing-style.slide__content.color-scheme-6.background-transparent {
	height: auto;
}
  #shopify-section-template--29204643512657__section_4Nia3e .group-block.group-block--width-fill.border-style.spacing-style.size-style .group-block.group-block--height-fit.group-block--width-fill.border-style.spacing-style.size-style .group-block-content.layout-panel-flex.layout-panel-flex--column.mobile-column {
	padding-right: 30px;
}
  #shopify-section-template--28917386871121__slideshow_GYGrVh .spacing-style.slide__content.color-scheme-6.background-transparent h1 {
    width: 100%;
    font-size: 35px;
  }
  #shopify-section-template--28917386871121__slideshow_GYGrVh .spacing-style.slide__content .spacing-style.text-block.rte p {
    width: 80%;
  }
  #shopify-section-template--29150234968401__slideshow_VjRQcd .slide__image-container > .slide__image{
object-position: 80% 0%;
}
.template-collection .collection-wrapper.grid.gap-style .product-grid {

	grid-template-columns: 1fr;

	padding: 10px;

}
.template-collection .product-card__content a.contents.user-select-text p {
	font-size: 20px;
}
 
 #shopify-section-template--28917386871121__section_4AnkxM .group-block-content.layout-panel-flex.layout-panel-flex--row {
  display: block;
  }
    #shopify-section-template--29451784356177__section_z8ydUW .border-style.custom-section-content .spacing-style .group-block .group-block-content .group-block .group-block-content .group-block .group-block-content {
    padding: 10px 20px !important;
  }
  #shopify-section-template--29451784356177__section_N97wfP {
  padding: 0px;
  margin-top: -10px;
}

}
@media screen and (max-width: 470px) {
#shopify-section-template--28917386871121__section_4AnkxM .group-block-content.layout-panel-flex.layout-panel-flex--row {
  margin: auto !important;
}
.product-card .price {
  position: relative;
  right: 0px;
  bottom: 0px;
}
#shopify-section-template--28917386871121__slideshow_GYGrVh h1 strong, #shopify-section-template--28917386871121__slideshow_GYGrVh h1 {
  font-size: 35px !important;
}
#shopify-section-template--28917386871121__section_haDNAE .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column a {
  width: 60% !important;
  margin: auto !important;
}
.group-block.group-block--height-fill.group-block--width-fill.border-style.spacing-style.size-style {
	padding: 0px;
}
#shopify-section-template--29244362162513__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, #shopify-section-template--29244470264145__section_3MF6Dz .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li, #shopify-section-template--29473850098001__section_njF8Qb .group-block .group-block-content .group-block:nth-child(2) .group-block-content .group-block .group-block-content ul li{
  font-size: 12px !important;
}
}
@media screen and (max-width: 414px) {
/* .size-style.button {
	font-size: 15px;
	margin: auto;
}*/
/*Door */
#shopify-section-template--29150848975185__slideshow_VjRQcd .size-style.button.button--AVlJzVUZJVDJhTzQyc__button_Li3WYF {
	margin: 0 auto !important;
}
/*Door End */
.size-style.button {
	font-size: 13px;
  margin: auto;
	padding: 10px !important;
}
.image-block.image-block--AL3M0bVpVMnJtOWVVV__image_7Gf9ed.image-block--height-fit.spacing-style.size-style img {
  width: 80%;
}
.spacing-style.text-block.text-block--AZXZZKzNoZDIxNk9CN__text_CXRzPm.rte.text-block--align-left.text-block--full-width p a {
	font-size: 13px;
	margin-right: 0px;
}
 .image-block.image-block--AcXY5aytiN3hqZ2RWZ__image_KTpJUL.image-block--height-fit.spacing-style.size-style {
    padding: 20px;
  }
   .spacing-style.text-block.text-block--AZUJZTnhtZkhUVzA2U__text_7yNqyb.rte h3 {
    font-size: 12px;
   }
}
@media screen and (max-width: 360px) {
#shopify-section-template--28917386871121__section_haDNAE .group-block-content.layout-panel-flex.layout-panel-flex--row.mobile-column a {
  width: 80% !important;
  margin: auto !important;
}
.account-button__icon {
  width: 20px;
  height: 20px;
  margin: 0 0px;
}
.wlh-svg-Icon.wlh-svg-icon-heart-empty {
  margin: 10px 0px;
}
.header-logo__image-container.header-logo__image-container--original {
  position: relative;
  left: -10px;
}

}
@media screen and (max-width: 320px) {

}