/* Add custom CSS styles below */ 
.logo-normal {
  width: auto !important;
  height:80px !important;
}

.store-footer__logo-link img {
  height: 120px !important;
}

div.rounded-full ,div.rounded-full img.lazy  {
  border-radius: 30px !important;
}

.circle-links__item.group,
[data-selia="home-circle-links-item"] {
  /* let it be a horizontal row of same-size items */
  flex: 0 0 auto;
}

.container.grid.auto-fit-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  gap: 12px;
  padding-bottom: 4px;
}

/* hide scrollbar (optional, keeps it clean) */
.container.grid.auto-fit-grid::-webkit-scrollbar {
  display: none;
}
.container.grid.auto-fit-grid {
  scrollbar-width: none;
}

/* shrink image + text on mobile */
@media (max-width: 640px) {
  .circle-links__image-wrap {
    width: 100px !important;
    height: 100px !important;
  }
  .circle-links__image-wrap img {
    width: 100px !important;
    height: 100px !important;
  }
  .circle-links__item-title {
    font-size: 12px !important;
    margin-top: 6px !important;
  }
  .circle-links__item-subtitle {
    font-size: 10px !important;
  }
  .container.grid.auto-fit-grid {
    gap: 8px;
  }
}