/* Force cart icon to stick to the right corner */
body .t706__carticon.t706__carticon_showed {
  top: 100px !important;     /* your vertical offset */
  right: 20px !important;    /* adjust this value to control horizontal spacing */
  left: auto !important;     /* reset any left positioning */
}


/* Mobile version */
@media (max-width: 1024px) {
  body .t706__carticon.t706__carticon_showed {
    top: 75px !important;   /* example: push it further down on mobile */
    bottom: auto !important;
  }
}

/* Make social icons larger and evenly spaced */
.t-sociallinks__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;   /* bigger clickable area */
  height: 40px !important; /* reduce the gap between icons */
}

.t-sociallinks__item svg {
  width: 40px !important;   /* enlarge the actual logo */
  height: 40px !important;
}

/* Brand colors */
.t-sociallinks__item_instagram svg path {
  fill: #E4405F !important;
}
.t-sociallinks__item_youtube svg path {
  fill: #FF0000 !important;
}
.t-sociallinks__item_tiktok svg path {
  fill: #000000 !important; /* or TikTok’s multicolor if you swap SVG */
}


