/** Shopify CDN: Minification failed

Line 262:0 Expected "}" to go with "{"

**/
/* Cart Rewards Tiered Progress Bar Styles */
.cart-rewards-progress {
  padding: 16px 16px 18px;
  background-color: #FAF9F8;
  border-bottom: 1px solid #EBEBEB;
  font-family: inherit;
  box-sizing: border-box;
  width: 100%;
}

.cart-rewards-progress__header {
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.cart-rewards-progress__header-text {
  display: inline-block;
}

.cart-rewards-progress__amount {
  font-weight: 700;
  color: #111111;
}

.cart-rewards-progress__highlight {
  font-weight: 700;
}

.cart-rewards-progress__unlocked-msg {
  display: none;
  color: #111111;
  font-weight: 600;
}

.cart-rewards-progress.all-unlocked .cart-rewards-progress__header-text {
.cart-rewards-progress.all-unlocked .cart-rewards-progress__header-text,
.cart-rewards-progress.shipping-unlocked .cart-rewards-progress__header-text {
  display: none;
}

.cart-rewards-progress.all-unlocked .cart-rewards-progress__unlocked-msg {
.cart-rewards-progress.all-unlocked .cart-rewards-progress__unlocked-msg,
.cart-rewards-progress.shipping-unlocked .cart-rewards-progress__unlocked-msg {
  display: inline-block;
}

.cart-rewards-progress__milestones-wrapper {
  position: relative;
  width: 100%;
}

/* Connecting track line */
.cart-rewards-progress__track-line {
  position: absolute;
  top: 50px;
  left: 14%;
  right: 14%;
  height: 2px;
  background-color: #E2E2E2;
  z-index: 1;
}

.cart-rewards-progress--two-cards .cart-rewards-progress__track-line {
  left: 25%;
  right: 25%;
}

.cart-rewards-progress--two-cards .cart-reward-card {
  max-width: 240px;
}

.cart-rewards-progress__track-fill {
  height: 100%;
  background-color: #BCA28B;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Cards grid */
.cart-rewards-progress__cards {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.cart-reward-card {
  flex: 1;
  min-width: 0;
  background-color: #FFFFFF;
  border: 1.5px solid #E4E4E4;
  border-radius: 10px;
  padding: 12px 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  user-select: none;
}

.cart-reward-card.is-active,
.cart-reward-card.is-unlocked {
  border-color: #BCA28B;
  box-shadow: 0 2px 8px rgba(188, 162, 139, 0.18);
}

/* Status circle in top-right */
.cart-reward-card__status {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #F0F0F0;
  color: #B5B5B5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-reward-card__status svg {
  width: 10px;
  height: 10px;
}

.cart-reward-card.is-unlocked .cart-reward-card__status {
  background-color: #BCA28B;
  color: #FFFFFF;
}

/* Icon & Media */
.cart-reward-card__icon {
  width: 48px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: #222222;
}

.cart-reward-card__icon svg {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  stroke: currentColor;
  display: block;
}

/* Media container for Gift Product image */
.cart-reward-card__media {
  width: 60px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  position: relative;
}

.cart-reward-card__image {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: 58px !important;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.12));
}

.cart-reward-card:hover .cart-reward-card__image {
  transform: scale(1.08);
}

/* Title & Condition */
.cart-reward-card__title {
  font-size: 11px;
  line-height: 1.25;
  color: #4A4A4A;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.cart-reward-card__condition {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  margin: 3px 0 0;
  line-height: 1.2;
}

/* Promotional hint */
.cart-rewards-progress__hint {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: #666666;
  line-height: 1.35;
}

.cart-rewards-progress__hint-strong {
  font-weight: 600;
  color: #BCA28B;
}

@media screen and (max-width: 400px) {
  .cart-rewards-progress {
    padding: 12px 8px 14px;
  }
  .cart-rewards-progress__cards {
    gap: 8px;
  }
  .cart-reward-card {
    padding: 10px 4px 10px;
    min-height: 130px;
  }
  .cart-reward-card__icon {
    width: 40px;
    height: 48px;
    margin-bottom: 4px;
  }
  .cart-reward-card__icon svg {
    width: 28px !important;
    height: 28px !important;
  }
  .cart-reward-card__media {
    width: 50px;
    height: 48px;
    margin-bottom: 4px;
  }
  .cart-reward-card__image {
    height: 48px !important;
  }
  .cart-reward-card__title {
    font-size: 10px;
  }
  .cart-reward-card__condition {
    font-size: 11px;
  }
}

