/** Shopify CDN: Minification failed

Line 211:0 Unexpected "}"

**/
/* ================= HEADER ICONS ================= */

.site-nav__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-nav__link--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  position: relative;
}

/* Icon size */
.site-nav__link--icon img,
.site-nav__link--icon svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Divider */
.site-nav__link--icon:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  height: 22px;
  width: 1px;
  background: #e5e5e5;
}

/* Hover */
.site-nav__link--icon:hover {
  color: #ff3186;
}


/* ================= CART BADGE ================= */

.cart-link {
  position: relative;
  display: inline-flex;
}

.cart-link__bubble {
  position: absolute;
  top: -5px;
  right: -6px;

  background: #ff4b2b;
  color: #fff;

  font-size: 10px;
  font-weight: 600;

  min-width: 16px;
  height: 16px;
  padding: 0 4px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
  box-shadow: 0 2px 6px rgba(255, 75, 43, 0.35);
}


/* ================= ROUND COLLECTIONS ================= */

.round-collections-section {
  padding: 25px 0;
}

.round-collections-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Wrapper */
.round-collections-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.round-collections-wrapper::-webkit-scrollbar {
  display: none;
}

/* Items */
.round-collection-item {
  flex: 0 0 auto;
  min-width: 80px;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}

/* Round image */
.round-collection-image {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;

  padding: 2px;
  background: linear-gradient(135deg, #ff3186, #ff6a9f);

  transition: all 0.3s ease;
}

.round-collection-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

/* Title */
.round-collection-title {
  font-size: 12px;
  margin-top: 6px;
  color: #000;
}

/* Hover */
.round-collection-item:hover .round-collection-image {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(255, 49, 134, 0.3);
}

.round-collection-item:hover .round-collection-title {
  color: #ff3186;
}


/* ================= MOBILE (4 ITEMS) ================= */

@media (max-width: 768px) {

  .round-collections-wrapper {
    gap: 12px;
    padding: 0 10px;
  }

  .round-collection-item {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .round-collection-image {
    width: 70px;
    height: 70px;
  }

  .round-collection-title {
    font-size: 11px;
  }
}


/* ================= DESKTOP CENTER ================= */

@media (min-width: 769px) {

  .round-collections-wrapper {
    justify-content: center;
    overflow-x: visible;
    flex-wrap: wrap;
  }

}
/* ===== FORCE LOGO LEFT (IMPULSE MOBILE FINAL FIX) ===== */
/* ===== FORCE LOGO LEFT (IMPULSE MOBILE - FINAL FIX) ===== */
@media (max-width: 768px) {

  /* Make header relative */
  .site-header {
    position: relative;
  }

  /* Move logo to left */
  .header-item.header-item--logo {
    position: absolute !important;
    left: 60px;   /* space after menu icon */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

}

}@media (max-width: 768px) {
  .header-item.header-item--logo {
    position: absolute;
    left: 40px;
    transform: none !important;
  }
}
/* ================= DESKTOP OPTIMIZATION ================= */
@media (min-width: 769px) {

  .round-collections-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 18px; /* tighter spacing */
  }

  .round-collection-item {
    min-width: auto; /* remove forced width */
    width: 90px;     /* controlled width */
  }

}
/* ================= IMAGE CARD ONLY ================= */

/* Remove styling from full card */
.grid-product {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Image card style */
.grid-product__image-mask {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f4c7d1;
  padding: 6px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Inner image */
.grid__image-ratio {
  border-radius: 14px;
  overflow: hidden;
}

/* Hover effect */
.grid-product__image-mask:hover {
  box-shadow: 0 8px 20px rgba(255, 49, 134, 0.15);
}

/* Image zoom */
.grid-product__image-mask:hover .grid__image-ratio {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}


/* ================= PRODUCT GAP FIX ================= */

/* Horizontal gap fix */
.grid,
.grid--uniform {
  margin-left: -6px !important;
}

/* Item spacing */
.grid__item,
.grid--uniform .grid__item {
  padding-left: 6px !important;
  margin-bottom: 10px !important;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .grid-product__image-mask {
    border-radius: 14px;
    padding: 5px;
  }

  .grid__image-ratio {
    border-radius: 12px;
  }

  /* tighter mobile spacing */
  .grid,
  .grid--uniform {
    margin-left: -4px !important;
  }

  .grid__item,
  .grid--uniform .grid__item {
    padding-left: 4px !important;
    margin-bottom: 8px !important;
  }
}