body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #222;
  background: #fafafa;
}

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

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.hero {
  background: linear-gradient(180deg, #f3f6f9, #ffffff);
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #555;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 26px;
  background: #0b5cff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.featured {
  background: #ffffff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  border: 1px solid #e6e6e6;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}

.product-card ul {
  padding-left: 18px;
}

.amazon-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 22px;
  background: #ff9900;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
}


.categories {
  background: #f7f7f7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.cat {
  background: #fff;
  padding: 18px;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
}

.site-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
}
.content-image {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 10px;
}
.card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
  background: #f2f2f2;
}
@media (min-width: 900px) {
  .card-image {
    height: 180px;
  }
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card ul {
  margin-bottom: auto;
}
.category-hero {
  width: 100%;
  height: auto;
  margin: 28px 0 34px;
  border-radius: 14px;
}
.breadcrumbs {
  font-size: 13px;
  margin: 18px 0 24px;
  color: #666;
}

.breadcrumbs a {
  color: #0b5cff;
  text-decoration: none;
}

.breadcrumbs span {
  margin: 0 6px;
  color: #999;
}
/* NAV BASE */
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* DROPDOWN */
.nav-item {
  position: relative;
}

.has-dropdown > a::after {
  content: " ▾";
  font-size: 12px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  display: none;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

.dropdown a:hover {
  background: #f5f7fb;
}

/* SHOW ON HOVER (DESKTOP) */
.has-dropdown:hover .dropdown {
  display: block;
}

/* MOBILE: keep Gifts clickable */
@media (max-width: 900px) {
  .main-nav {
    flex-wrap: wrap;
  }
  .has-dropdown:hover .dropdown {
    display: none;
  }
}
.cat {
  text-decoration: none;
  color: inherit;
}