/** Shopify CDN: Minification failed

Line 7:0 Unexpected "`"
Line 176:0 Unexpected "`"

**/
```css
.list-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media only screen and (max-width: 749px) {
  .list-social {
    justify-content: center;
  }
}

.list-social__item .icon {
  height: 2.2rem;
  width: 2.2rem;
}

.list-social__link {
  align-items: center;
  display: flex;
  padding: 1.1rem;
  color: rgb(var(--color-foreground));
}

.utility-bar .list-social__link {
  padding: 0 0.8rem;
  height: 3.8rem;
}

.list-social__link:hover .icon {
  transform: scale(1.07);
}

/* RosaLine — clear premium footer social icons */

.footer .footer-block--newsletter {
  align-items: flex-start;
}

.footer .list-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer .list-social__item {
  margin: 0;
  flex: 0 0 auto;
}

.footer .list-social__link {
  width: 36px;
  height: 36px;
  padding: 0;

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

  color: #4F343B !important;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  box-shadow: none;

  opacity: 1;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.footer .list-social__link .svg-wrapper {
  width: 21px;
  height: 21px;

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

.footer .list-social__link svg,
.footer .list-social__link .icon {
  width: 21px !important;
  height: 21px !important;
  display: block;
  color: currentColor;
}

.footer .list-social__link svg path,
.footer .list-social__link svg circle,
.footer .list-social__link svg rect,
.footer .list-social__link svg polygon {
  fill: currentColor;
}

.footer .list-social__link:hover {
  color: #7A4A58 !important;
  background-color: rgba(166, 106, 120, 0.10);
  border-color: rgba(122, 74, 88, 0.20);
  box-shadow:
    0 0 0 5px rgba(166, 106, 120, 0.08),
    0 8px 20px rgba(79, 52, 59, 0.10);
  transform: translateY(-2px);
}

.footer .list-social__link:hover .icon {
  transform: none;
}

.footer .list-social__link:hover svg,
.footer .list-social__link:hover .icon {
  color: currentColor;
}

.footer .list-social__link:focus-visible {
  outline: 1px solid rgba(79, 52, 59, 0.35);
  outline-offset: 5px;
}

/* RosaLine — mobile fix: all 6 icons in one row */

@media only screen and (max-width: 749px) {
  .footer .footer-block--newsletter {
    align-items: center;
    text-align: center;
  }

  .footer .list-social {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 18px;
  }

  .footer .list-social__item {
    flex: 0 0 auto;
  }

  .footer .list-social__link {
    width: 30px;
    height: 30px;
  }

  .footer .list-social__link .svg-wrapper {
    width: 18px;
    height: 18px;
  }

  .footer .list-social__link svg,
  .footer .list-social__link .icon {
    width: 18px !important;
    height: 18px !important;
  }

  .footer .list-social__link:hover {
    box-shadow:
      0 0 0 4px rgba(166, 106, 120, 0.08),
      0 6px 16px rgba(79, 52, 59, 0.10);
  }
}
```
