/** Shopify CDN: Minification failed

Line 6:1 Unexpected "{"

**/
 {
  box-sizing: border-box;
}

.gift-builder-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gift-builder-left {
  flex: 1 1 48%;
  width: 50%; /* Add this */
}

.gift-builder-left,
.gift-builder-right {
  flex: 1 1 48%;
}

.gift-builder h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
}

.dropdown-header {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 10px;
  cursor: pointer;
  background: #f0f0f0;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.dropdown-header.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-content {
  display: none;
  margin-top: 10px;
}
.product-card {
  flex: 0 0 auto;
  width: 140px; /* Reduced from 180px */
  scroll-snap-align: start;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 8px; /* Reduced padding */
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.image-wrapper {
  height: 140px; /* Reduced image height */
}

.image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px; /* Slightly smaller */
}
.product-card p {
  font-size: 14px; /* Smaller font for title and price */
}
.mini-submit {
  margin-top: auto;
  align-self: stretch;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #be2424;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: center;
}

.mini-submit:hover {
  background-color: #9e1f1f;
}

.cart-count-badge {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #be2424;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 9999;
  font-size: 14px;
}

@media (max-width: 768px) {
  .gift-builder-left,
  .gift-builder-right {
    flex: 1 1 100%;
  }
  .scroll-arrow {
    font-size: 20px;
    padding: 8px;
  }
}

/* Scrollable product row with arrows */
.scroll-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.scroll-inner-wrapper {
  overflow-x: auto;
  flex: 1;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.scroll-inner-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.product-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0;
  max-width: 50%;
}

/* Flickity-style arrow buttons */
.scroll-arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 100%;
  z-index: 1;
}

.flickity-button-icon {
  width: 28px;
  height: 28px;
  display: block;
  fill: black;
}

.scroll-left {
  margin-right: 12px;
}

.scroll-right {
  margin-left: 12px;
}

/* Quantity Buttons */
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.quantity-selector .quantity-count {
  font-size: 16px;
  min-width: 24px;
  text-align: center;
  font-weight: bold;
}
.header__cart-icon img {
  width: 40px;
  height: auto;
}

@media (max-width: 767px) {
  #mini-cart {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background-color: #ffffff;
    overflow-y: auto;
    padding: 20px 16px 100px; /* bottom padding for buttons */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
  }

  .mini-cart__line-item-list {
    margin-bottom: 20px;
  }

  .mini-cart__line-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
  }

  .mini-cart__image-wrapper {
    margin-bottom: 10px;
    text-align: center;
  }

  .mini-cart__item-wrapper {
    padding: 0;
  }

  .mini-cart__product-title {
    font-size: 16px;
  }

  .mini-cart__property {
    font-size: 14px;
  }

  .mini-cart__price-list,
  .mini-cart__quantity {
    margin-top: 6px;
    font-size: 14px;
  }

  .mini-cart__recap {
    padding-top: 20px;
    border-top: 1px solid #ccc;
    background: #fff;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 24px;
    z-index: 10001;
  }

  .mini-cart__button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .button--primary,
  .button--secondary {
    width: 100%;
    font-size: 16px;
    padding: 14px;
  }

  /* Optional: Add a close button */
  #mini-cart .mobile-cart-close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 28px;
    background: none;
    border: none;
    color: #000;
    z-index: 10002;
  }

  body.mini-cart-open {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .product-card {
    width: 120px;
    padding: 6px;
  }

  .image-wrapper {
    height: 120px;
  }

  .product-card p {
    font-size: 13px;
  }
}
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 4px;
}

.quantity-selector__button {
  width: 32px;
  height: 32px;
  background-color: #f2f2f2;
  color: black;
  border: 1px solid #ccc;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.quantity-selector__button:hover {
  background-color: #e0e0e0;
}

.quantity-selector__value {
  width: 38px;
  height: 32px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 16px;
  font-weight: bold;
  border-radius: 2px;
  padding: 0 6px;
  cursor: default;
}

/* Push the Smile.io launcher above the fixed action bar on mobile */
@media (max-width: 768px) {
  .smile-ui-container,
  .smile-launcher,
  #smile-ui-container {
    bottom: 1000px !important; /* Adjust based on your button height */
    z-index: 10000 !important; /* Ensure it's above other elements */
  }
}
@media (min-width: 769px) {
  .smile-ui-container,
  .smile-launcher,
  #smile-ui-container {
    bottom: 20px !important;
  }
}
/* Fix mini cart icon size on desktop for Shalach Manos page */
.gift-builder .header__cart-icon img {
  max-width: 200px !important;
  height: auto;
  width: auto;
}
