body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  color: #222;
  background: #f6f6f6;
}

header {
  background: #fff;
  border-bottom: 2px solid #d30024;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 1rem;
}

.logo-icon {
  background: radial-gradient(circle, #fff 0%, #d30024 100%);
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.menu a {
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .8rem;
  margin-left: 1rem;
  transition: .2s;
}

.menu a:hover {
  color: #d30024;
}

.hero {
  background: linear-gradient(135deg, #fff, #e5e5e5);
  text-align: center;
  padding: 5rem 1rem;
}

.hero h1 {
  color: #d30024;
  font-size: 2.2rem;
}

.btn-cta {
  background: #d30024;
  color: #fff;
  border: none;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 1rem;
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 1rem;
  text-align: center;
}

.section-title h2 {
  color: #d30024;
}

.about-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.about-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: .7rem;
  padding: 1rem;
  width: 150px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  border-radius: .7rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 1rem;
  transition: .2s;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: .7rem;
  margin-bottom: .5rem;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.btn-buy {
  background: #d30024;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .7rem;
  text-transform: uppercase;
  cursor: pointer;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.store-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: .7rem;
  padding: 1rem;
  text-align: left;
}

.store-card a {
  color: #d30024;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
}

footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.socials a {
  color: #fff;
  margin: 0 .5rem;
  font-size: 1.2rem;
  transition: .2s;
}

.socials a:hover {
  color: #d30024;
}
