/** Shopify CDN: Minification failed

Line 45:9 Expected identifier but found whitespace
Line 45:11 Unexpected "{"
Line 45:20 Expected ":"
Line 45:66 Expected ":"
Line 59:11 Expected identifier but found whitespace
Line 59:13 Unexpected "{"
Line 59:22 Expected ":"
Line 59:67 Expected ":"
Line 405:13 Expected identifier but found whitespace
Line 405:15 Unexpected "{"
... and 1 more hidden warnings

**/


/* CSS from section stylesheet tags */
.collection-list-section {
  text-align: center;
  overflow: hidden;
}

.collection-list-section .collections-grid {
  display: grid;
  gap: 20px;
  justify-content: center;
}

.collection-list-section .collection-item {
  position: relative;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.collection-list-section .collection-item.in-view {
  transform: translateY(0);
  opacity: 1;
}

.collection-list-section .collection-item img {
  width: 100%;
  height: {{ section.settings.collection_image_height_desktop }}px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease;
}

.collection-list-section .collection-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .collection-list-section .collection-item img {
    height: {{ section.settings.collection_image_height_mobile }}px;
  }
}

.collection-list-section .collection-title {
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
}

@media (min-width: 768px) {
  .collection-list-section {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.bridging-traditions-section {
  font-family: inherit;
}

.bridging-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.bridging-left {
  text-align: left;
}

.bridging-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.bridging-underline {
  width: 60px;
  height: 3px;
  border-radius: 2px;
}

.bridging-right p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.bridging-right strong {
  color: #e74c3c;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .bridging-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bridging-heading {
    font-size: 32px;
  }

  .bridging-right p {
    font-size: 16px;
  }
}
.new-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border: 1px solid #e5e5e5;
}

.new-location-image {
  position: relative;
  overflow: hidden;
}

.new-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.new-location-image .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.new-location-content {
  padding: 60px 50px;
}

.new-location-heading {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.new-location-location {
  font-size: 18px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.new-location-description p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.new-location-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.new-location-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}

.btn-secondary {
  border: 1px solid;
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: #000 !important;
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  .new-location-grid {
    grid-template-columns: 1fr;
  }

  .new-location-content {
    padding: 40px 25px;
  }

  .new-location-heading {
    font-size: 30px;
  }
}
.our-story-section {
  text-align: left;
}

.our-story-content {
  max-width: 700px;
}

.our-story-tagline {
  display: inline-block;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.our-story-heading {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.our-story-desc {
  font-size: 18px;
  color: #333;
  margin-bottom: 35px;
}

.our-story-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.our-story-buttons a {
  display: inline-block;
  padding: 14px 26px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}

.btn-secondary {
  border: 1px solid;
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: #000 !important;
  color: #fff !important;
}
.product-grid {
  display: grid;
  gap: 20px;
}

/* Desktop grid */
@media screen and (min-width: 750px) {
  .grid--2-col-desktop { grid-template-columns: repeat(2, 1fr); }
  .grid--3-col-desktop { grid-template-columns: repeat(3, 1fr); }
  .grid--4-col-desktop { grid-template-columns: repeat(4, 1fr); }
  .grid--5-col-desktop { grid-template-columns: repeat(5, 1fr); }
  .grid--6-col-desktop { grid-template-columns: repeat(6, 1fr); }
}

/* Mobile grid */
@media screen and (max-width: 749px) {
  .grid--1-col-mobile { grid-template-columns: 1fr; }
  .grid--2-col-mobile { grid-template-columns: repeat(2, 1fr); }
}

/* Product Card */
.product-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

/* Image */
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image {
  transform: scale(1.1);
}

/* Badges */
.product-card__sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1d4ed8;
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 4px;
}

/* Details */
.product-card__details {
  padding: 12px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.product-card__title {
  font-weight: 600;
  margin: 8px 0;
}
.product-card__price {
  font-size: 16px;
}
.product-card__price--compare {
  text-decoration: line-through;
  color: #999;
  margin-left: 6px;
}

/* Cart + Button */
.product-card__cart {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: stretch;
}
.product-card__quantity {
  width: 60px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
  flex: 0 0 60px;
}
.product-card__button {
  background: #006400;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex: 1;
}
.product-card:hover .product-card__button {
  background: {{ section.settings.button_hover_color }};
}