/** Shopify CDN: Minification failed

Line 18:2 Unexpected "{"
Line 18:3 Expected identifier but found "%"
Line 18:34 Unexpected "{"
Line 18:35 Expected identifier but found "%"

**/
/* ============================================================
   Product Cross-Sell
   ============================================================ */

.product-cross-sell {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  {% comment %} overflow: hidden; {% endcomment %}
  padding-right: 2px;
}

.product-cross-sell__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.03rem;
  font-family: Inter, sans-serif;
}

.product-cross-sell__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Item Row */

.product-cross-sell__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(40px);
  animation: crossSellSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.product-cross-sell__item:nth-child(1) { animation-delay: 0.05s; }
.product-cross-sell__item:nth-child(2) { animation-delay: 0.12s; }
.product-cross-sell__item:nth-child(3) { animation-delay: 0.19s; }
.product-cross-sell__item:nth-child(4) { animation-delay: 0.26s; }
.product-cross-sell__item:nth-child(5) { animation-delay: 0.33s; }

@keyframes crossSellSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .product-cross-sell__item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.product-cross-sell__left {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* Image */

.product-cross-sell__image-wrapper {
  display: block;
  flex-shrink: 0;
}

.product-cross-sell__image {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #F2F2F2;
  object-fit: cover;
  display: block;
}

/* Info */

.product-cross-sell__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.product-cross-sell__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-cross-sell__name {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.product-cross-sell__name:hover {
  text-decoration: underline;
}

.product-cross-sell__price {
  font-size: 13px;
  font-weight: 400;
}

.product-cross-sell__meta {
  font-size: 12px;
  font-weight: 300;
  color: #000;
}

/* ─── Button ──────────────────────────────────────────────── */

.product-cross-sell__add {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F2F2F2;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  transition: background 0.25s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.product-cross-sell__add:hover {
  background: #e5e5e5;
  transform: scale(1.06);
}

.product-cross-sell__add:active {
  transform: scale(0.97);
}

.product-cross-sell__add:disabled:not(.is-loading) {
  opacity: 1;
  cursor: not-allowed;
  transform: none;
}

/* Freeze icon transitions during loading */
.product-cross-sell__add.is-loading .product-cross-sell__icon {
  transition: none !important;
}

/* While removing (active + loading): keep check icon visible */
.product-cross-sell__add.is-active.is-loading .product-cross-sell__icon--active {
  opacity: 1;
}

/* While adding (inactive + loading): keep bag icon visible */
.product-cross-sell__add:not(.is-active).is-loading .product-cross-sell__icon--default {
  opacity: 1;
}

.product-cross-sell__add.is-active {
  background: #e21a5a;
}

/* ─── Icons ───────────────────────────────────────────────── */

.product-cross-sell__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.product-cross-sell__icon--default {
  color: #1C1B1F;
  opacity: 1;
}

.product-cross-sell__icon--active {
  color: #ffffff;
  opacity: 0;
}

.product-cross-sell__add.is-active .product-cross-sell__icon--default {
  opacity: 0;
}

.product-cross-sell__add.is-active .product-cross-sell__icon--active {
  opacity: 1;
}

/* ─── Addon Button ────────────────────────────────────────── */

.addons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.addons-images {
  display: flex;
  align-items: center;
}

.addons-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

.addons-circle:first-child {
  margin-left: 0;
}

.addons-circle--new {
  animation: addonImgSlideIn 0.5s ease-out forwards;
}

@keyframes addonImgSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.addons-title {
  font-weight: 500;
  font-size: 14px;
}

.addons-original-label {
  font-weight: 600;
}

.wishlist-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .addons-circle--new { animation: none; }
}



/* ============================================================
   Cart Cross-Sell Styles
   ============================================================ */

.cart-cross-sell {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid #e8e8e8;
  margin-top: 8px;
}

.cart-cross-sell__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.03rem;
  font-family: Inter, sans-serif;
}

.cart-cross-sell__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Item Row */

.cart-cross-sell__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cart-cross-sell__left {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* Product Image */

.cart-cross-sell__image-wrapper {
  display: block;
  flex-shrink: 0;
}

.cart-cross-sell__image {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #F2F2F2;
  object-fit: cover;
  display: block;
}

/* Product Info */

.cart-cross-sell__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-cross-sell__heading {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cart-cross-sell__name {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.cart-cross-sell__name:hover {
  text-decoration: underline;
}

.cart-cross-sell__price {
  font-size: 12px;
  font-weight: 400;
  color: #444;
}

.cart-cross-sell__meta {
  font-size: 11px;
  font-weight: 300;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Add Button — static, unfunctioned for now */

.cart-cross-sell__add {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F2F2F2;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.cart-cross-sell__add:hover {
  background: #e5e5e5;
  transform: scale(1.06);
}

.cart-cross-sell__add:active {
  transform: scale(0.97);
  background: #e21a5a;
}

.cart-cross-sell__add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Icon stacking */
.cart-cross-sell__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: opacity 0.25s ease;
}

.cart-cross-sell__icon--active {
  opacity: 0;
}

/* Active state */
.cart-cross-sell__add.is-active {
  background: #e21a5a;
}

.cart-cross-sell__add.is-active .cart-cross-sell__icon--default {
  opacity: 0;
}

.cart-cross-sell__add.is-active .cart-cross-sell__icon--active {
  opacity: 1;
}

/* Default icon — dark */
.cart-cross-sell__icon--default {
  color: #1C1B1F;
}

/* Active icon — white (sits on red button) */
.cart-cross-sell__add.is-active .cart-cross-sell__icon--active {
  color: #ffffff;
}