/* Store Footer (Stable, Always Works) */

.store-footer{
  padding: 52px 0;
  background: #f8fafc;
  border-top: 1px solid rgba(17,24,39,.06);
}

.store-footer-box{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.store-footer-social{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.sf-icon{
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 12px 26px rgba(17,24,39,.10);
  transition: transform .16s ease, filter .16s ease;
  letter-spacing: .5px;
}

.sf-icon:hover{
  transform: translateY(-2px);
  filter: brightness(.92);
}

/* Colors like screenshot */
.sf-ig{
  background: linear-gradient(135deg, #ffdc80, #f56040, #bc2a8d, #4c68d7);
}

.sf-x{
  background: linear-gradient(135deg, #22c1c3, #1da1f2);
}

.sf-fb{
  background: linear-gradient(135deg, #1877f2, #4c68d7);
}

.store-footer-links{
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  color: rgba(17,24,39,.80);
}

.store-footer-links a{
  text-decoration: none;
  color: inherit;
  opacity: .95;
  transition: color .15s ease, opacity .15s ease;
}

.store-footer-links a:hover{
  color: var(--secondary);
  opacity: 1;
}

.store-footer-copy{
  font-size: 13px;
  color: rgba(107,114,128,.95);
}

@media (max-width: 575px){
  .store-footer{
    padding: 40px 0;
  }
  .store-footer-links{
    gap: 16px;
    font-size: 13px;
  }
  .sf-icon{
    width: 46px;
    height: 46px;
  }
}
