.sticky-icons {
	position: fixed;
	bottom: 15px;
	right: 30px;
	z-index: 1000;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;
	gap: 12px;
	transition: all 0.3s ease;
}

.sticky-icon {
	display: none;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: #BAA183;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.3s ease;
}
/*#BAA183*/
.sticky-icon svg { 
  width: 26px; 
  height: 26px; 
  fill: #fff;
  stroke: #ada3a3;
}


.sticky-icon:hover {
    color: #fff;
	transform: scale(1.1);
}

/* Only the toggle is shown by default */
.sticky-icon.toggle-icon {
	display: flex;
}

/* Show all icons when expanded */
.sticky-icons.expanded .sticky-icon {
	display: flex;
}

/* But hide toggle from being duplicated */
.sticky-icons.expanded .sticky-icon.toggle-icon {
	display: flex;
}
.sticky-icons.active {
	transform: translateX(-30vw);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    margin-bottom: -20px;
  }
  to {
    opacity: 1;
    margin-bottom: 0;
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 1;
    margin-bottom: 0;
  }
  to {
    opacity: 0;
    margin-bottom: -20px;
  }
}

.sticky-icons.expanded .sticky-icon:not(.toggle-icon) {
  animation: fadeSlideUp 0.5s ease forwards;
}

.sticky-icons.closing .sticky-icon:not(.toggle-icon) {
  animation: fadeSlideDown 0.4s ease forwards;
}

/* === Move sticky block to bottom-left === */
.sticky-icons{
  left: 30px;         /* nauja vieta */
  right: auto;        /* atšaukiam right */
  align-items: flex-start; /* ikonų lygiavimas į kairę */
}

/* Jei turi „išsistūmimo“ animaciją aktyvioje būsenoje – keičiam kryptį */
.sticky-icons.active{
  transform: translateX(30vw); /* buvo -30vw, nes slenkama iš dešinės */
}

/* (nebūtina) jei nori, kad ikonos „kiltų“ į viršų nuo kairio krašto – 
   palik flex-direction: column-reverse; kaip yra.
   Jei nori, kad pirmas mygtukas būtų apačioje, o kiti virš jo – nieko nekeisk.
   Jei norėtum, kad jie “leistųsi žemyn” nuo viršaus, rašyk: */
/* .sticky-icons { flex-direction: column; } */

