/** Shopify CDN: Minification failed

Line 80:12 Expected identifier but found whitespace
Line 80:14 Unexpected "{"
Line 80:23 Expected ":"
Line 80:63 Expected ":"

**/


/* CSS from section stylesheet tags */
.image-compare-wrapper {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width, 100%);
  margin: 0 auto;
}

.image-compare-container {
  position: relative;
  height: auto;
  cursor: ew-resize;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-compare-image {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  object-fit: cover;
  display: block;
}

.image-compare-top {
  width: 50%;
  z-index: 2;
  overflow: hidden;
}

.image-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ffffff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  cursor: ew-resize;
  z-index: 3;
}
@media (max-width: 768px) {
  .image-compare-handle {
    width: 3px;
  }
}
.rewards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

.rewards-container h2 {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 27px;
  line-height: 30px;
  color: rgb(0, 0, 0);
  margin-bottom: 40px;
  text-align: center;
}

.rewards {
  max-width: {{ section.settings.max_width | default: 1200 }}px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.reward-tier {
  min-width: 280px;
  flex: 1 1 280px;
  max-width: 100%;
  border-radius: 10px;
  padding: 20px 40px;
  background: #F8F8F8;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

.reward-tier:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.reward-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 12px;
}

.reward-info {
  width: 100%;
}

.reward-vendor,
.reward-title,
.reward-compare-at-price,
.reward-base-price {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.reward-vendor {
  font-size: 12px;
  color: #696969;
}

.reward-title {
  font-weight: 600;
  margin-top: 5px;
}

.reward-price {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  margin: 15px 0;
}

.reward-compare-at-price {
  text-decoration: line-through;
}

.reward-base-price {
  color: #d8c49d;
  font-weight: 600;
  box-shadow: 0 0 0 2px #d8c49d;
  border-radius: 5px;
  padding: 0px;
}

.reward-button {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #2d2926;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.reward-button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #d8c49d;
}

.reward-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  bottom: 1px;
}

/* Tablet */
@media (max-width: 1024px) {
  .rewards {
    gap: 24px;
  }

  .reward-tier {
    flex: 1 1 45%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .rewards-container {
    padding: 40px 16px;
  }

  .reward-tier {
    flex: 1 1 100%;
  }

  .reward-price {
    gap: 16px;
    font-size: 14px;
  }

  .reward-title {
    font-size: 16px;
  }

  .reward-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .reward-image {
    width: 120px;
    height: 120px;
  }

  .reward-title {
    font-size: 15px;
  }

  .reward-button {
    font-size: 13px;
    padding: 8px 14px;
  }

  .reward-icon {
    width: 14px;
    height: 14px;
  }
}