* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  font-size: 16px;
  color: #222;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

/* ── NAVBAR ── */
nav {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #111;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: #444;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}

/* ── FOOTER ── */
footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  font-size: 13px;
}

footer a {
  color: #ccc;
}

footer a:hover {
  color: #fff;
}

/* ── BUTTON ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #111;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  border: 2px solid #111;
  cursor: pointer;
}

.btn:hover {
  background-color: #fff;
  color: #111;
}

.btn-outline {
  background-color: #fff;
  color: #111;
  border: 2px solid #111;
}

.btn-outline:hover {
  background-color: #111;
  color: #fff;
}

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

/* ── SECTION TITLE ── */
.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-sub {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-bottom: 36px;
}

/* ── PRODUCT CARD ── */
.product-card {
  border: 1px solid #eee;
  background: #fff;
}

.product-card img {
  height: 260px;
  object-fit: cover;
  background-color: #f5f5f5;
}

.product-card .card-body {
  padding: 14px;
}

.product-card .card-name {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 4px;
}

.product-card .card-price {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.product-card .card-btn {
  font-size: 13px;
  padding: 8px 18px;
}

.hero {
  background-color: #f7f4ef;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
  max-width: 400px;
}

.hero-image {
  width: 420px;
  min-width: 320px;
  height: 460px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.product-card img {
  height: 260px;
  object-fit: cover;
}

.values-section {
  background-color: #f7f4ef;
  padding: 50px 40px;
  margin-top: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 20px;
}

.value-item .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.value-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 13px;
  color: #666;
}

.testimonials {
  padding: 60px 40px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testi-card {
  border: 1px solid #e0e0e0;
  padding: 24px;
}

.testi-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

.testi-card .author {
  font-size: 13px;
  font-weight: bold;
  color: #222;
}

.banner-strip {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 13px;
  letter-spacing: 1px;
}

.featured-section {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}