/** Shopify CDN: Minification failed

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

**/
/* ==========================================================================
   Picked For You Section
   Product recommendations with wishlist hearts
   Figma Reference: Node 244:871
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Defaults - overridden by inline styles)
   -------------------------------------------------------------------------- */
.picked-for-you {
  --pfy-bg-color: #FFFFFF;
  --pfy-title-color: #000000;
  --pfy-product-title-color: #000000;
  --pfy-star-color: #EA6329;
  --pfy-price-color: #000000;
  --pfy-compare-price-color: #000000;
  --pfy-badge-bg: #EA6329;
  --pfy-badge-color: #FFFFFF;
  --pfy-heart-bg: #FFFFFF;
  --pfy-heart-color: #000000;
  --pfy-card-radius: 12px;
  --pfy-card-gap: 16px;
  --pfy-image-height: 343px;
  --pfy-padding-top: 60px;
  --pfy-padding-bottom: 60px;
  --pfy-columns-desktop: 4;
  --pfy-columns-tablet: 2;
  --pfy-columns-mobile: 2;
  --pfy-font-family: 'Oakes Grotesk', Arial, sans-serif;
  --pfy-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  width: 100%;
  background-color: var(--pfy-bg-color);
  padding-top: var(--pfy-padding-top);
  padding-bottom: var(--pfy-padding-bottom);
}

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.picked-for-you__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* Figma Exact: 40px */
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

/* --------------------------------------------------------------------------
   Title
   Figma Exact: 36px Bold, uppercase, tracking 1.25px
   -------------------------------------------------------------------------- */
.picked-for-you__title {
  font-family: var(--pfy-font-family);
  font-size: 36px; /* Figma Exact: 36px */
  font-weight: 700; /* Figma Exact: Bold */
  line-height: normal;
  letter-spacing: 1.25px; /* Figma Exact: 1.25px */
  text-transform: uppercase;
  color: var(--pfy-title-color);
  text-align: center;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Products Grid
   Figma: 4 columns, 16px gap
   -------------------------------------------------------------------------- */
.picked-for-you__grid {
  display: grid;
  grid-template-columns: repeat(var(--pfy-columns-desktop), 1fr);
  gap: var(--pfy-card-gap);
  width: 100%;
}

/* --------------------------------------------------------------------------
   Product Card
   Figma Exact: 333px width
   -------------------------------------------------------------------------- */
.picked-for-you__card {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Figma Exact: 20px */
}

/* Image Wrapper */
.picked-for-you__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--pfy-card-radius);
  overflow: hidden;
  background-color: #F5F5F5;
}

.picked-for-you__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.picked-for-you__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--pfy-transition);
}

.picked-for-you__card:hover .picked-for-you__image {
  transform: scale(1.05);
}

/* Placeholder */
.picked-for-you__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F0F0F0;
  color: rgba(0, 0, 0, 0.2);
}

/* Save badge on image - top right */
.picked-for-you__image-badge {
  position: absolute;
  top: 11px;
  right: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background-color: var(--pfy-badge-bg);
  color: var(--pfy-badge-color);
  font-family: var(--pfy-font-family);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  border-radius: 32px;
  white-space: nowrap;
  z-index: 2;
}

/* Wishlist Heart Button - top left */
.picked-for-you__wishlist {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 40px; /* Figma Exact: 40px */
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--pfy-heart-bg);
  color: var(--pfy-heart-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--pfy-transition), box-shadow var(--pfy-transition);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.picked-for-you__wishlist:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.picked-for-you__wishlist.is-active {
  color: #EA6329;
}

.picked-for-you__wishlist.is-active svg path {
  fill: currentColor;
}

.picked-for-you__wishlist svg {
  width: 22px; /* Figma Exact: 22px */
  height: 22px;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

/* --------------------------------------------------------------------------
   Add to Cart Button
   -------------------------------------------------------------------------- */
.picked-for-you__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  background-color: #EA6329;
  color: #FFFFFF;
  font-family: var(--pfy-font-family);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.picked-for-you__add-to-cart:hover {
  background-color: #d4461f;
}

.picked-for-you__add-to-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #999;
}

/* Desktop: Show on hover */
.picked-for-you__add-to-cart--desktop {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}

.picked-for-you__card:hover .picked-for-you__add-to-cart--desktop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mobile: Hide desktop button */
.picked-for-you__add-to-cart--mobile {
  display: none;
}

/* Add to Cart - Loading State */
.picked-for-you__add-to-cart.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

.picked-for-you__add-to-cart.is-loading span {
  animation: pfyPulse 1s ease-in-out infinite;
}

/* Add to Cart - Added State (Success) */
.picked-for-you__add-to-cart.is-added {
  background: #28a745;
  animation: pfyAddedBounce 0.4s ease;
}

.picked-for-you__add-to-cart.is-added:hover {
  background: #28a745;
}

@keyframes pfyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes pfyAddedBounce {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
  100% { transform: translateX(-50%) scale(1); }
}

/* --------------------------------------------------------------------------
   Card Content
   -------------------------------------------------------------------------- */
.picked-for-you__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* Figma Exact: 20px */
  text-align: center;
}

/* Product Title */
.picked-for-you__product-link {
  text-decoration: none;
  color: inherit;
}

.picked-for-you__product-title {
  font-family: var(--pfy-font-family);
  font-size: 24px; /* Figma Exact: 24px */
  font-weight: 500; /* Figma Exact: Medium */
  line-height: normal;
  color: var(--pfy-product-title-color);
  margin: 0;
  transition: color var(--pfy-transition);
}

.picked-for-you__product-link:hover .picked-for-you__product-title {
  color: var(--pfy-star-color);
}

/* --------------------------------------------------------------------------
   Rating
   -------------------------------------------------------------------------- */
.picked-for-you__rating {
  display: flex;
  align-items: center;
  gap: 6px; /* Figma Exact: 6px */
}

.picked-for-you__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--pfy-star-color);
}

.picked-for-you__stars svg {
  width: 16px;
  height: 15px;
}

.picked-for-you__rating-text {
  font-family: var(--pfy-font-family);
  font-size: 14px; /* Figma Exact: 14px */
  font-weight: 500; /* Figma Exact: Medium */
  line-height: normal;
  color: var(--pfy-product-title-color);
}

/* --------------------------------------------------------------------------
   Price
   -------------------------------------------------------------------------- */
.picked-for-you__price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px; /* Figma Exact: 12px */
  flex-wrap: wrap;
  justify-content: center;
}

.picked-for-you__price {
  font-family: var(--pfy-font-family);
  font-size: 20px; /* Figma Exact: 20px */
  font-weight: 600; /* Figma Exact: SemiBold */
  line-height: normal;
  color: var(--pfy-price-color);
}

.picked-for-you__compare-price {
  font-family: var(--pfy-font-family);
  font-size: 14px; /* Figma Exact: 14px */
  font-weight: 400; /* Figma Exact: Regular */
  line-height: normal;
  color: var(--pfy-compare-price-color);
  opacity: 0.6; /* Figma Exact: 60% */
  text-decoration: line-through;
}

/* Sale Badge */
.picked-for-you__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px; /* Figma Exact: 6px 10px */
  background-color: var(--pfy-badge-bg);
  color: var(--pfy-badge-color);
  font-family: var(--pfy-font-family);
  font-size: 14px; /* Figma Exact: 14px */
  font-weight: 600; /* Figma Exact: SemiBold */
  line-height: normal;
  border-radius: 32px; /* Figma Exact: 32px (pill shape) */
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   TABLET STYLES (750px - 989px)
   -------------------------------------------------------------------------- */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .picked-for-you__container {
    padding-left: 40px;
    padding-right: 40px;
    gap: 32px;
  }

  .picked-for-you__grid {
    grid-template-columns: repeat(var(--pfy-columns-tablet), 1fr);
  }

  .picked-for-you__title {
    font-size: 30px;
  }

  .picked-for-you__product-title {
    font-size: 20px;
  }

  .picked-for-you__price {
    font-size: 18px;
  }
}

/* --------------------------------------------------------------------------
   MOBILE STYLES (< 750px)
   Figma Reference: Node 244:1348
   -------------------------------------------------------------------------- */
@media screen and (max-width: 749px) {
  .picked-for-you {
    --pfy-padding-top: 32px !important;
    --pfy-padding-bottom: 32px !important;
  }

  .picked-for-you__image-wrapper {
    aspect-ratio: 189 / 195;
    border-radius: 4px;
  }

  .picked-for-you__container {
    padding-left: 16px;
    padding-right: 16px;
    gap: 20px;
  }

  .picked-for-you__title {
    font-size: 18px;
    letter-spacing: 0.7px;
  }

  .picked-for-you__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px; /* Reduced row gap */
  }

  .picked-for-you__card {
    gap: 8px; /* Tighter gap between image and content */
  }

  /* Wishlist heart on mobile - smaller */
  .picked-for-you__wishlist {
    width: 28px;
    height: 28px;
    top: 6px;
    left: 6px;
  }

  .picked-for-you__wishlist svg {
    width: 14px;
    height: 14px;
  }

  /* Image badge on mobile - smaller */
  .picked-for-you__image-badge {
    font-size: 10px;
    padding: 3px 7px;
    top: 6px;
    right: 6px;
  }

  .picked-for-you__content {
    gap: 4px; /* Tighter content spacing */
    align-items: center;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .picked-for-you__product-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .picked-for-you__rating {
    gap: 4px;
  }

  .picked-for-you__stars svg {
    width: 14px;
    height: 13px;
  }

  .picked-for-you__rating-text {
    font-size: 12px;
  }

  /* Price and badge layout on mobile */
  .picked-for-you__price-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .picked-for-you__price {
    font-size: 16px;
    font-weight: 600;
  }

  .picked-for-you__compare-price {
    font-size: 12px;
    margin-left: 4px;
  }

  /* Keep price and compare price inline */
  .picked-for-you__price,
  .picked-for-you__compare-price {
    display: inline;
  }

  /* Mobile: Hide desktop button, show mobile button */
  .picked-for-you__add-to-cart--desktop {
    display: none;
  }

  .picked-for-you__add-to-cart--mobile {
    display: flex;
    width: 100%;
    margin-top: auto;
    padding: 10px 16px;
    font-size: 12px;
    border-radius: 25px;
  }

  .picked-for-you__add-to-cart--mobile.is-added {
    animation: pfyAddedBounceMobile 0.4s ease;
  }

  @keyframes pfyAddedBounceMobile {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
}

/* --------------------------------------------------------------------------
   SMALL MOBILE (< 375px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 374px) {
  .picked-for-you {

  .picked-for-you__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .picked-for-you__title {
    font-size: 16px;
  }

  .picked-for-you__grid {
    gap: 14px 8px;
  }

  .picked-for-you__card {
    gap: 6px;
  }

  .picked-for-you__product-title {
    font-size: 12px;
  }

  .picked-for-you__price {
    font-size: 14px;
  }

  .picked-for-you__compare-price {
    font-size: 10px;
  }

  .picked-for-you__badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .picked-for-you__stars svg {
    width: 12px;
    height: 11px;
  }

  .picked-for-you__rating-text {
    font-size: 10px;
  }

  .picked-for-you__add-to-cart--mobile {
    padding: 8px 12px;
    font-size: 10px;
    margin-top: 6px;
  }
}

/* --------------------------------------------------------------------------
   REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .picked-for-you__image,
  .picked-for-you__wishlist,
  .picked-for-you__product-title {
    transition: none;
  }

  .picked-for-you__card:hover .picked-for-you__image {
    transform: none;
  }

  .picked-for-you__wishlist:hover {
    transform: none;
  }
}
