body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background: #E30613;
  color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

/* BUTTONS */
.btn {
  background: #FFD400;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
  border: 2px solid #E30613;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
}

.btn-small {
  background: white;
  color: black;
  padding: 8px 12px;
  border-radius: 8px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #E30613, #ff4d4d);
  color: white;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* CARD */
.card {
  background: white;
  border: 1px solid #ddd;
  padding: 40px;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* PRODUCTS */
.products {
  padding: 50px 0;
}

.products h2 {
  margin-bottom: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.product-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.no-image {
  height: 150px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.price {
  font-weight: bold;
  margin: 10px 0;
}

/* FOOTER */
.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}