* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* PERFIL */
.profile {
  text-align: center;
  margin-bottom: 30px;
}

.profile img {
  width: 110px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.profile h1 {
  font-size: 20px;
  margin: 5px 0;
}

.profile p {
  font-size: 14px;
  color: #555;
}

/* BUSCA */
.search {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#searchInput {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* GRID DE PRODUTOS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* CARD PRODUTO */
.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.product-card h2 {
  font-size: 16px;
  margin: 12px 0 5px;
  text-align: center;
}

.desc {
  font-size: 13px;
  color: #555;
  text-align: center;
}

/* BOTÕES DE LOJA */
.store-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.store {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  color: #fff;
}

.temu {
  background: #ff6a00;
}

.shein {
  background: #000;
}

.shopee {
  background: #ff5722;
}

/* RODAPÉ */
footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 30px;
  margin-bottom: 40px;
}

.socials a {
  margin: 0 10px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
