/* Create Your Wellness — footer social icons (outline → brand colour on hover) */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cyw-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(244, 238, 224, 0.24);
  color: rgba(244, 238, 224, 0.72);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.cyw-social:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.cyw-social svg {
  width: 17px;
  height: 17px;
  display: block;
}

.cyw-social .cyw-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

.cyw-social:hover .cyw-icon {
  fill: currentColor;
  stroke: currentColor;
}

.cyw-social--tiktok:hover {
  color: #25f4ee;
  background: #010101;
}

.cyw-social--youtube:hover {
  color: #fff;
  background: #ff0000;
}

.cyw-social--x:hover {
  color: #fff;
  background: #000;
}

.cyw-social--linkedin:hover {
  color: #fff;
  background: #0a66c2;
}

.cyw-social--instagram:hover {
  color: #fff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.cyw-social--facebook:hover {
  color: #fff;
  background: #1877f2;
}
