/** Shopify CDN: Minification failed

Line 185:0 Unexpected "}"

**/
/* Floating Add to Cart Button */
.floating-add-to-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F6F5F1;
  border-top: 1px solid #e5e5e5;
  padding: 16px 20px;
  border-radius: 2.4rem 2.4rem 0 0;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  width: fit-content;
  gap: 4rem;
  display: flex;
  margin-left: auto;
  margin-right: 2rem;
}

.floating-add-to-cart.visible {
  transform: translateY(0);
}

.floating-add-to-cart__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.floating-add-to-cart__product-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.floating-add-to-cart__product-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.floating-add-to-cart__product-details {
  flex: 1;
  min-width: 0;
}

.floating-add-to-cart__product-title {
  font-family: 'Urbanist', var(--font-heading-family);
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-add-to-cart__product-price {
  font-size: 13px;
  color: #666;
  margin: 2px 0 0 0;
}

.floating-add-to-cart__button-container {
  flex-shrink: 0;
}

.floating-add-to-cart__button {
  background: #DB7030;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px 24px;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: center;
  white-space: nowrap;
}

.floating-add-to-cart__button:hover {
  background: #CA662A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.floating-add-to-cart__button:active {
  transform: translateY(0);
}

.floating-add-to-cart__button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.floating-add-to-cart__button-separator {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.floating-add-to-cart__button-price {
  font-size: 13px;
  font-weight: 500;
}

/* Mobile optimizations */
@media screen and (max-width: 768px) {
  .floating-add-to-cart {
    padding: 12px 16px;
    margin: 0;
    width: 100%;
  }
  
  .floating-add-to-cart__content {
    margin: 0;
    width: 100%;
  }

  .floating-add-to-cart__product-info{
    display: none;
  }

  .floating-add-to-cart__button-container{
    width: 100%;
  }

  .floating-add-to-cart__button{
    width: 100%;
    justify-content: center;
  }

  .floating-add-to-cart__button-text{
    font-size: 1.4rem;
    font-weight: 500;
  }

  .floating-add-to-cart__button-price{
    font-size: 1.4rem !important;
  }
  }
  
  .floating-add-to-cart__product-image {
    width: 45px;
    height: 45px;
  }
  
  .floating-add-to-cart__product-title {
    font-size: 13px;
  }
  
  .floating-add-to-cart__product-price {
    font-size: 12px;
  }
  
  .floating-add-to-cart__button {
    padding: 16px 32px;
    font-size: 13px;
    min-width: 120px;
  }
  
  .floating-add-to-cart__button-price {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .floating-add-to-cart__content {
    gap: 8px;
  }
  
  .floating-add-to-cart__product-info {
    gap: 8px;
  }
  
  .floating-add-to-cart__product-image {
    width: 40px;
    height: 40px;
  }
  
  .floating-add-to-cart__product-title {
    font-size: 12px;
  }
  
  .floating-add-to-cart__button {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 100px;
  }
}

/* Hide on very small screens if needed */
@media screen and (max-width: 320px) {
  .floating-add-to-cart__product-details {
    display: none;
  }
  
  .floating-add-to-cart__button {
    min-width: auto;
    flex: 1;
  }
}

/* Animation for loading state */
.floating-add-to-cart__button.loading {
  position: relative;
  color: transparent;
}

.floating-add-to-cart__button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: floating-cart-spin 1s linear infinite;
}

@keyframes floating-cart-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}