/** Shopify CDN: Minification failed

Line 52:10 Unexpected "{"
Line 52:19 Expected ":"

**/
/* ===========================================================
   Custom Collection Section
=========================================================== */

.custom-collection-section {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  overflow: hidden;
}

/*=========================
Container
=========================*/

.collection-container-full {
  width: 100%;
  padding: 0 40px;
}

.collection-container-custom {
  max-width: var(--custom-container);
  margin: auto;
  padding: 0 20px;
}

/*=========================
Heading
=========================*/

.collection-heading {
  margin-bottom: clamp(25px, 5vw, 40px);
}

.collection-heading.text-left {
  text-align: left;
}

.collection-heading.text-center {
  text-align: center;
}

.collection-heading.text-right {
  text-align: right;
}

.section-{{ section.id }} h2.heading {
  color: var(--heading-color);
}

.collection-heading .section-description {
  margin-top: clamp(12px, 1.5vw, 16px);
  color: var(--text-color);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  max-width: 760px;
}

.collection-heading.text-center .section-description {
  margin-left: auto;
  margin-right: auto;
}

.collection-heading.text-right .section-description {
  margin-left: auto;
}

/*=========================
Grid
=========================*/

.collection-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--grid-gap);
}

/*=========================
Card
=========================*/

.collection-card {
  flex: 0 0 calc((100% - (var(--columns-desktop) - 1) * var(--grid-gap)) / var(--columns-desktop));
  height: auto;
  background: #fff;
  border: 1px solid var(--golden);
  padding: 5px;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: .35s ease;
}

.collection-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/*=========================
Image
=========================*/

.collection-image {
  aspect-ratio: 4/2.5;
  overflow: hidden;
  background: #f6f6f6;
}

.collection-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: .6s ease;
}

/*=========================
Content
=========================*/

.collection-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  position: relative;
}

.collection-icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  position: absolute;
  top: -40px;
  background-color: #fff;
  border-radius: 50%;
}

.collection-icon img {
  max-width: 100%;
  max-height: 100%;
}

.collection-content h3 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
}

.collection-content p {
  flex: 1;
  margin: 0 0 10px;
  color: var(--text-color);
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 1.7;
}

/*=========================
Button
=========================*/

.collection-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background-color: var(--golden);
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .3s;
  position: relative;
  padding: 8px 20px;
  border: 1px solid #eee;
}
.collection-button:after {
    content: "";
    width: 100%;
    height: 2px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transition: all 0.5s ease;
}

/*=========================
Hover
=========================*/

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-card:hover .collection-button {
  background-color: var(--primary);
}

.collection-card:hover .collection-button:after {
    width: 50%;
}

/*=========================
Responsive Grid
=========================*/

@media (max-width: 1199px) {
  .collection-card {
    flex: 0 0 calc((100% - 2 * var(--grid-gap)) / 3);
  }
}

@media (max-width: 991px) {
  .custom-collection-section {
    padding-top: var(--mobile-padding-top);
    padding-bottom: var(--mobile-padding-bottom);
  }

  .collection-card {
    flex: 0 0 calc((100% - 2 * var(--grid-gap)) / 2);
  }
}

@media (max-width: 767px) {
  .collection-container-full,
  .collection-container-custom {
    padding: 0 16px;
  }

  .collection-grid {
    gap: 18px;
  }
}

@media (max-width: 575px) {
  .collection-card {
    flex: 0 0 100%;
  }
}