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

body {
  font-family: 'Inter', sans-serif;
  background: #fffaf7;
  color: #333;
  line-height: 1.6;
  padding: 1rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 600;
}

.logo span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-left: 4px;
  color: #e07a5f;
}

nav {
  margin-top: 0.5rem;
}

.nav-link {
  margin-left: 1rem;
  text-decoration: none;
  font-size: 0.95rem;
  color: #e07a5f;
}

.nav-link:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Button */
.btn {
  background-color: #e07a5f;
  color: white;
  padding: 0.6rem 1.3rem;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #cf6a4e;
}

/* Intro Section */
.intro {
  margin-top: 2rem;
  text-align: center;
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.intro p {
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
  color: #555;
}

/* Page Titles */
.page-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

/* Product Page */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.product-card {
  background-color: #f5e6da;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.product-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 0.8rem;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #e07a5f;
  margin-bottom: 0.8rem;
}

/* About Page */
.about-page {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.about-content p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #444;
  text-align: left;
}

.about-content a.btn {
  margin-top: 1rem;
}

/* Contact Page */
.contact-page {
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #e0dcd9;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e07a5f;
  outline: none;
}

/* Cart Page */
.cart-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.cart-item {
  background: #f5e6da;
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.remove-btn {
  background: #e07a5f;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.cart-summary {
  text-align: right;
  margin-top: 1.5rem;
}

/* Checkout Page */
.checkout-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.checkout-form input,
.checkout-form textarea {
  padding: 0.8rem;
  border: 1px solid #e0dcd9;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: #e07a5f;
  outline: none;
}

.order-summary p {
  margin-bottom: 0.4rem;
}

/* Responsive */
@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.site-footer {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 1rem;
  background-color: #fff1e6;
  color: #7a5c4b;
  font-size: 0.9rem;
  border-radius: 1rem;
}
.product-detail-page {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.product-detail-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}.btn.small {
  background: transparent;
  color: #e07a5f;
  border: 1px solid #e07a5f;
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
}
.btn.small:hover {
  background-color: #e07a5f;
  color: white;
}

