/*
Theme Name: Nymbio Theme
*/

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #ffffff;
  color: #222;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  border-bottom: 1px solid #eee;
}

header h1 {
  font-size: 26px;
  letter-spacing: 3px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

nav a:hover {
  color: #800020;
}

/* HERO */
.hero {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #800020, #2b0000);
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 80px 0;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.card {
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 14px;
  transition: 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #eee;
  margin-top: 60px;
}
.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s;
  border: 1px solid #eee;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin: 0 0 10px;
}

.product-info p {
  font-size: 14px;
  color: #555;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #800020;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 10px;
}
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.product-hero img {
  width: 100%;
  border-radius: 12px;
}

.product-box {
  background: #fafafa;
  padding: 30px;
  border-radius: 12px;
}

.product-box h1 {
  margin-bottom: 10px;
}

.product-benefits {
  margin-top: 40px;
}

.product-benefits li {
  margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #800020;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
}