* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* PROMO */
.promo-bar {
  background: #c21c1c;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

/* HEADER */
.header {
  background: #000;
  color: #fff;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.search-box input {
  width: 320px;
  padding: 8px;
}

.header-icons span {
  margin-left: 15px;
  font-size: 14px;
}

/* NAV */
.nav {
  background: #111;
}

.menu {
  display: flex;
  list-style: none;
  gap: 25px;
  padding: 12px 0;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.dropdown {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 30px;
  background: #fff;
  min-width: 220px;
}

.submenu a {
  display: block;
  padding: 10px;
  color: #000;
}

.dropdown:hover .submenu {
  display: block;
}

/* HERO */
.hero {
  background: #f2f2f2;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.btn-primary {
  background: #c21c1c;
  color: #fff;
  padding: 12px 25px;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
}

/* PRODUCTS */
.products {
  padding: 60px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
}

.product-card .img {
  height: 180px;
  background: #eee;
  margin-bottom: 10px;
}

.product-card button {
  background: #c21c1c;
  color: #fff;
  border: none;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
}

/* CTA */
.cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.btn-secondary {
  background: #c21c1c;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer a {
  display: block;
  color: #ccc;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer input {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
}

.footer button {
  width: 100%;
  padding: 8px;
  background: #c21c1c;
  color: #fff;
  border: none;
}

copyright {
  text-align: center;
  margin-top: 20px;
}
