* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fff;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ff6a00;
}

.menu a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.menu a:hover {
  color: #ff6a00;
}

.btn-outline {
  border: 1px solid #ff6a00;
  background: none;
  padding: 8px 16px;
  border-radius: 6px;
  color: #ff6a00;
  cursor: pointer;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #fff3eb, #ffffff);
  padding: 80px 0;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.hero p {
  color: #666;
  margin-bottom: 30px;
}

.search-box {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: auto;
}

.search-box input {
  flex: 1;
  padding: 14px;
  border-radius: 8px 0 0 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.search-box button {
  padding: 14px 22px;
  border: none;
  background: #ff6a00;
  color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

/* PRODUCTS */
.products {
  padding: 70px 0;
  background: #f9f9f9;
}

.products h2 {
  text-align: center;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #666;
  margin-bottom: 20px;
}

.card button {
  background: none;
  border: 1px solid #ddd;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card button:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu-item {
  position: relative;
  cursor: pointer;
}

.menu-item span,
.menu a {
  font-weight: 500;
  color: #333;
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  padding: 12px 0;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
}

.dropdown a:hover {
  background: #f5f5f5;
}

.menu-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn-link {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.btn-primary {
  background: #ff6a00;
  border: none;
  padding: 10px 18px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}


/* FOOTER */
.footer {
  padding: 30px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #eee;
}
