/** Shopify CDN: Minification failed

Line 165:32 The "-" operator only works if there is whitespace on both sides
Line 171:32 The "-" operator only works if there is whitespace on both sides

**/
/* Small grid */
.small-grid {
  --columns-count: 2;
  --line-height: var(--font-s-line-height) * 1em;
  --used-lines: 6;

  display: grid;
  grid-auto-flow: dense;
  margin: calc(-0.5 * var(--grid-gap));
  grid-template-columns: repeat(
    var(--columns-count),
    calc(100% / var(--columns-count))
  );
  position: relative;
}
@media (max-width: 500px) {
  .small-grid.two-columns,
  .small-grid.three-columns {
    --columns-count: 1;
  }
}
@media (min-width: 800px) {
  .small-grid.four-columns,
  .small-grid.five-columns {
    --columns-count: 3;
  }
  .small-grid.three-columns {
    --columns-count: 2;
  }
}
@media (min-width: 1000px) {
  .small-grid.three-columns {
    --columns-count: 3;
  }
  .small-grid.four-columns,
  .small-grid.five-columns {
    --columns-count: 4;
  }
}
@media (min-width: 1200px) {
  .small-grid.five-columns {
    --columns-count: 5;
  }
}

.small-block {
  box-sizing: border-box;
  padding: calc(var(--grid-gap) / 2);
  display: flex;
  flex-direction: column;
  position: relative;
}

.small-block .promotion {
  display: flex;
}
.small-block .promotion::before {
  content: " ";
  display: block;
  width: 0;
  padding-bottom: calc(
    100% / var(--aspect-ratio) + var(--used-lines) * var(--line-height)
  );
}
.small-block .promotion {
  position: relative;
  overflow: hidden;
  color: rgb(var(--text_color));
  background-color: rgb(var(--background_color));
}
.small-block .promotion > div {
  width: 100%;
}
.small-block .promotion .content-background {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.small-block .promotion .content-background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  transition: var(--grid-image-on-hover-speed) ease transform;
}
.small-block .promotion .content-text {
  position: relative;
  z-index: 1;
  padding: min(var(--space-around), 24px);
}

.small-block .small-block-top {
  aspect-ratio: var(--aspect-ratio);
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.small-block .small-block-top img,
.small-block .small-block-top svg {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  object-fit: cover;
  position: absolute;
  transition: var(--grid-image-on-hover-speed) ease transform,
    var(--grid-image-on-hover-speed) ease opacity;
}

.small-block .small-block-top.with-second-image img:nth-of-type(2) {
  opacity: 0;
}
.small-block a.small-block-top.with-second-image:hover img {
  opacity: 0;
}
.small-block a.small-block-top.with-second-image:hover img:nth-of-type(2) {
  opacity: 1;
}

.small-block .small-block-top .variant-image {
  opacity: 0;
}

.small-block .small-block-bottom {
  min-height: calc(var(--used-lines) * var(--line-height));
  line-height: var(--line-height);
  position: relative;
  padding: calc(0.05em + (48px - var(--line-height)) / 2) 0px 0 0;
}
.small-block .small-block-bottom.with-quick-view {
  padding: calc(0.05em + (48px - var(--line-height)) / 2) 40px 0 0;
}
.small-block .small-block-bottom .icon.icon-add-to-cart {
  top: 0;
  right: 0;
  position: absolute;
}
.small-block .small-block-bottom .underline-animation {
  margin-bottom: -0.25em;
}
.small-block-bottom-text > *:not(:first-child) {
  margin-top: 1px;
}
.small-block-bottom-text > *:not(:last-child) {
  margin-bottom: 1px;
}
.small-block .small-block-bottom p {
  margin: 0;
}
.small-block .block-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.small-block .block-badge-top_left {
  top: calc(var(--grid-gap) / 2 -1px);
  left: calc(var(--grid-gap) / 2 - 1px);
  align-items: flex-start;
  justify-content: flex-start;
}
.small-block .block-badge-top_right {
  top: calc(var(--grid-gap) / 2 -1px);
  right: calc(var(--grid-gap) / 2 - 1px);
  align-items: flex-end;
  justify-content: flex-start;
}
.small-block .block-badge span {
  display: block;
  padding: 6px 10px 6px;
  background-color: rgb(var(--background_color));
}

.small-block-notes {
  padding-right: 12px;
  position: relative;
  /* height: calc(2 * var(--line-height)); */
  width: 100%;
  /* overflow: hidden; */
}
.small-block-notes > p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* .small-block-notes:after,.small-block-notes:before{
  content: "...";background-color: rgb(var(--background_color)); z-index: 1; position: absolute; right: 0; padding-left: 3px;
}
.small-block-notes:before{top: calc(var(--line-height));}
.small-block-notes:after{color: transparent;min-height: calc(2 * var(--line-height));} */

.small-block .product-name-with-price > p {
  display: inline;
}
@media (max-width: 480px) {
  .small-grid:not(.two-columns) .small-block .product-name-with-price > p,
  .small-grid:not(.two-columns) .small-block .product-name-with-price > span {
    display: block;
  }
  .small-grid:not(.two-columns) .small-block .product-name-with-price > .dot {
    display: none;
  }
}

/* Gallery v2 */
.gallery-grid {
  --columns-count: 2;
  --aspect-ratio: 1;
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(
    var(--columns-count),
    calc(100% / var(--columns-count))
  );
}
.full-width > .gallery-grid.with-gap,
.full-width > * > .gallery-grid.with-gap {
  margin-left: var(--space-around);
  margin-right: var(--space-around);
}
.gallery-grid.with-gap {
  grid-template-columns: repeat(
    var(--columns-count),
    calc(
      (100% - var(--grid-gap) * (var(--columns-count) - 1)) /
        var(--columns-count)
    )
  );
  grid-gap: var(--grid-gap);
}
.gallery-grid.text-gallery-grid {
  margin-left: calc(-1 * var(--space-around));
  margin-right: calc(-1 * var(--space-around));
}
.gallery-grid.columns-2,
.gallery-grid.columns-3 {
  --columns-count: 1;
}
@media (min-width: 600px) {
  .gallery-grid.columns-2 {
    --columns-count: 2;
  }
  .gallery-grid.columns-3,
  .gallery-grid.columns-5 {
    --columns-count: 3;
  }
}
@media (min-width: 800px) {
  .gallery-grid.columns-4 {
    --columns-count: 4;
  }
  .gallery-grid.columns-6 {
    --columns-count: 6;
  }
}
/* @media (min-width: 800px) {
  .gallery-grid.columns-4,
  .gallery-grid.columns-6 {
    --columns-count: 4;
  }
} */
@media (min-width: 1000px) {
  .gallery-grid.columns-5 {
    --columns-count: 5;
  }
}
@media (min-width: 1200px) {
  .gallery-grid.columns-6 {
    --columns-count: 6;
  }
}
.gallery-grid-item {
  position: relative;
  z-index: 1;
  background-color: rgb(var(--background_color));
  color: rgb(var(--text_color));
}
.gallery-grid-item > div {
  width: 100%;
}

.gallery-grid-item .text .text-content.with-small-margin {
  margin: calc(var(--space-around) / 2);
}
.gallery-grid-item .text .text-content.without-margin {
  margin: 0;
}

.gallery-grid-item.cover::before {
  content: " ";
  display: block;
  width: 0;
  padding-bottom: calc(var(--aspect-ratio) * 100%);
}
.gallery-grid-item.cover .media {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
.gallery-grid-item .media > barracuda-image-loader {
  display: block;
}
.gallery-grid-item.cover .media > *,
.gallery-grid-item .media > barracuda-image-loader > * {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
}

.gallery-grid-item .overlay-color {
  width: 100%;
  height: 100%;
  position: absolute;
}

.gallery-grid-item.cover .text {
  z-index: 1;
  position: relative;
  min-height: 100%;
  width: 100%;
}
.gallery-grid-item.link,
.small-block .promotion.link {
  cursor: pointer;
}
.gallery-grid-item.link .media > *,
.small-block .promotion.link .content-background > * {
  transform: scale(1);
  transition: transform var(--grid-image-on-hover-speed) ease;
}
.gallery-grid-item.link:hover .media > *,
.small-block .promotion.link:hover .content-background > * {
  transform: scale(var(--grid-zoom-image-on-hover));
}
.gallery-grid-item.link > div:after,
.small-block .promotion.link > div:after {
  content: " ";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--background_color), 0);
  transition: 0.3s background-color ease;
  will-change: background-color;
}

/* .gallery-grid-item.link:hover > div:after,
.small-block .promotion.link:hover > div:after {
  background-color: rgba(var(--background_color), 0.4);
} */
.gallery-grid-item.link h3 .underline-animation,
.small-block .promotion.link h3 .underline-animation {
  cursor: pointer;
  background-position: 0 calc(1.25em);
  padding-bottom: 0.25em;
  background-image: linear-gradient(
    to right,
    rgb(var(--text_color)),
    rgb(var(--text_color))
  );
  background-size: 0 0.12em;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-grid-item.link:hover h3 .underline-animation,
.small-block .promotion.link:hover h3 .underline-animation {
  background-size: 100% 1px;
}
.gallery-grid-item .button,
.small-block .promotion.link .button {
  display: inline-block;
}

/* Large grid for blog */

.gallery-grid .article-block .article-text h3 {
  margin: 14px 0 8px 0;
}

.gallery-grid .article-block .article-text .article-info {
  margin-top: 36px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .gallery-grid .article-block .article-text .article-info {
    margin-top: 24px;
  }
}
.gallery-grid
  .article-block
  .article-text
  .article-info
  span:not(.article-label)
  + span.article-label {
  padding-left: 14px;
}
.gallery-grid .article-block .article-text .article-label:not(:last-child) {
  padding-right: 14px;
}

.gallery-grid .article-block .article-text p {
  padding: 4px 0px 8px;
  margin: 0;
  font-size: 1em;
}

.gallery-grid .article-block .article-text .article-link {
  margin-top: 0;
}

.article-text .article-text {
  margin-bottom: 8px;
}

.gallery-grid .article-block .article-text {
  margin: 0;
  margin-right: 24px;
  margin-bottom: 0;
}
@media (min-width: 765px) {
  .gallery-grid .article-block .article-text {
    margin-right: 48px;
  }
}

a.article-image-url:hover + div.article-text h3 a span.underline-animation {
  background-size: 100% 1px;
}
/* Blog block */
.gallery-grid .article-block a .media-frame img {
  transition: transform 0.3s ease;
  transform: scale(1);
}
.gallery-grid .article-block a:hover .media-frame img {
  transform: scale(1.1);
}

/* Three grid, footer-grid */
.three-grid {
  display: grid;
  justify-content: center;
  grid-auto-flow: dense;
  grid-template-columns: 1fr;

  grid-gap: var(--grid-gap);
}
.legal-block {
  order: 10;
}
@media (min-width: 765px) {
  .three-grid {
    grid-template-columns: 1fr 1fr;
  }
  .legal-block {
    grid-column-start: 1;
    order: unset;
  }
  .three-block.wide {
    grid-column: span 2;
  }
  .three-block.tall {
    grid-row: span 2;
  }
}
@media (min-width: 1136px) {
  .three-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Carousel */
.section-carousel-grid {
  position: relative;
  overflow: hidden;
}
.small-grid.carousel-grid,
.carousel-grid.universal {
  display: flex;
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
}
.carousel-grid .small-block {
  flex-basis: calc(100% / var(--columns-count));
  flex-shrink: 0;
}
.carousel-grid .small-block.size-wide {
  flex-basis: calc(2 * (100% / var(--columns-count)));
}
.barracuda-carousel-controls {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.barracuda-carousel-controls .arrows {
  opacity: 0;
}
.barracuda-dot {
  cursor: pointer;
  display: flex;
  height: 48px;
  width: 0;
  flex-shrink: 0;
  flex-grow: 0;
  overflow-x: hidden;
  justify-content: center;
  align-items: center;
  transition: 0.3s width ease 0.02s;
}
.barracuda-dot.visible {
  width: 24px;
}
.barracuda-dot:after {
  content: "";
  height: 4px;
  width: 0px;
  background-color: rgb(var(--text_color));
  border-radius: 50%;
  transform: scale(1);
  transition: 0.3s transform ease;
}
.barracuda-dot.visible:after {
  width: 4px;
}
.barracuda-dot:hover::after,
.barracuda-dot.current::after {
  transform: scale(1.5);
}
.barracuda-dot.visible.end:after {
  width: 3px;
  height: 3px;
}
@media (min-width: 810px) {
  .barracuda-carousel-controls .spacer {
    display: none;
  }
  .barracuda-carousel-controls .arrows {
    opacity: 1;
  }
}

/* Additional product grid styles */
.collection-grid-section .product-name {
  font-size: 10px !important;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
}
.collection-grid-section .product-name p {
  text-transform: none;
  font-weight: 400;
  opacity: 1;
  color: #8a8a8a;
  padding-top: 4px;
}
.collection-grid-section .small-block .small-block-bottom {
  padding-top: 10px;
  padding-right: 20%;
}
@media (max-width: 768px) {
  .collection-grid-section .product-name {
    font-size: 9px !important;
  }
}
