/** Shopify CDN: Minification failed

Line 103:19 Expected identifier but found whitespace
Line 103:21 Unexpected "{"
Line 103:30 Expected ":"
Line 104:14 Expected identifier but found whitespace
Line 104:16 Unexpected "{"
Line 104:25 Expected ":"
Line 104:51 Expected ":"
Line 105:17 Expected identifier but found whitespace
Line 105:19 Unexpected "{"
Line 105:28 Expected ":"
... and 4 more hidden warnings

**/


/* CSS from section stylesheet tags */
@font-face {
    font-family: 'Quillstone';
    src: url('{{ 'Quillstone.ttf' | asset_url }}') format('truetype');
    font-display: swap;
  }

.about-us-wrapper {
  font-family: 'Quillstone', sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px;
  gap: 30px;
}
.about-us-media {
  flex: 1 1 45%;
  text-align: center;
}
.about-us-content {
  flex: 1 1 50%;
}
.about-us-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-us-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.about-us-stats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 40px;
}
.about-us-stat-box {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 48%;
}
.about-us-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #d34757;
}
.about-us-stat-suffix {
  display: none;
  font-size: 32px;
  font-weight: 800;
  color: #d34757;
}
.about-us-stat-label {
  font-size: 16px;
  margin-top: 5px;
}
.about-us-content.align-left { text-align: left; }
.about-us-content.align-center { text-align: center; }
.about-us-content.align-right { text-align: right; }

@media screen and (max-width: 768px) {
  .about-us-wrapper {
    flex-direction: column;
  }
  .about-us-media {
    order: -1;
    width: 100%;
  }
  .about-us-content {
    width: 100%;
  }
  .about-us-stats {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .about-us-stat-box {
    flex: 0 0 48%;
  }
}
.shop-by-category {
  background-color: {{ section.settings.background_color }};
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  text-align: {{ section.settings.section_alignment }};
}

.shop-by-category__heading {
  margin-bottom: 20px;
}

.shop-by-category__masonry-grid {
  column-count: 3;
  column-gap: 20px;
  counter-reset: category-counter;
}

@media (max-width: 1024px) {
  .shop-by-category__masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .shop-by-category__masonry-grid {
    column-count: 1;
  }
}

.shop-by-category__masonry-grid-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.shop-by-category__masonry-grid-item:hover {
  transform: scale(1.05);
}

.shop-by-category__masonry-grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-by-category__masonry-grid-item__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background-color: #000;
}