@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Open+Sans&display=swap');
:root {
  --sage: #a8b8a3;
  --sage-dark: #7f927b;
  --leaf: #5f6f63;
  --accent: #dfe7dc;
}
body {
  font-family: 'Open Sans', sans-serif;
  background: #f8f7f2; /* soft cream */
  color: #2f332f; /* softer dark text*/
  text-align: center;
  margin: 0;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 10px;
  color: #2a2e2a;
  letter-spacing: 1px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #2a2e2a;
  margin: 40px 0 25px;
  position: relative;
}
h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #7a8f6b;
  margin: 10px auto 0;
  border-radius: 2px;
}
.tagline {
  font-style: italic;
  margin-top: 8px;
  font-size: 18px;
  color: #6b7c6b;
  letter-spacing: 0.5px;
}
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.card {
  background: white;
  padding: 5px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: scale(1.05);
  box-shadow:0px 10px 25px rgba(0,0,0,0.15);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.card img.badge-img {
  height: 240px;
  object-fit: contain;
  background: white;
}
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #6f7f5d, #5c6b4c);
  color: white;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 18px rgba(0,0,0,0.12);
}
.order {
  display: inline-block;
  background: #e1306c;
  border: 2px solid #e1306c;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  foint-weight: bold;
  margin-top: 5px;
}
.order:hover {
  opacity: 0.8;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  gap: 30px;
  background: var(--accent);
  padding: 14px 0;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  border-bottom: 1px solid #d3ddd0;
}
.nav a {
  text-decoration: none;
  color: var(--leaf);
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 10px;
  transition: color 0.2s ease;
}
.nav a:hover {
  color: var(--sage-dark);
}
.html {
  scroll-behavior: smooth;
}
.modal {
  overflow: auto;
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.modal-content {
  width: auto;
  height: auto;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  display: block;
  border-radius: 10px;
}
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
.img-gallery {
  cursor: pointer;
  display: block;
  width: 100%;
}
.intro-text {
  max-width: 520px;
  margin: 10px auto 25px;
  color: #5f6f63;
  line-height: 1.6;
  font-size: 16px;
}
.custom-order {
  border: 1px solid rgba(0,0,0,0.05);
  background: linear-gradient( 
    135deg,
    #e6efe6 0%,
    #dbe8db 100%
    );
  padding: 32px 28px;
  border-radius: 14px;
  margin: 40px auto;
  margin-top: 70px;
  max-width: 700px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05), 
    inset: 0 1px 0 rgba(255,255,255,0.6);
}
.custom-order h2 {
  color: var(--sage-dark);
  font-size: 36px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.custom-order p {
  color: #4e5d52;
  margin: 14px auto 22px;
  max-width: 480px;
  line-height: 1.7;
}
.logo {
  display: block;
  margin: 0 auto 10px;
  width: 110px;
  margin-bottom: 10px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
.follow-section,.contact-section {
  text-align: center;
  margin: 60px auto;
  max-width: 600px;
  padding: 30px 20px;
  background: #ffffff;
  border: 1px solid #dfe7dc;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.insta-link,.email-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  font-weight: bold;
  color: var(--sage-dark);
  text-decoration: none;
  border: 1px solid #cfd8cc;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.insta-link:hover,.email-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  background: var(--sage-dark);
  color: white;
  text-decoration: underline;
}
.footer {
  border-top: 1px solid #d3ddd0;
  margin-top: 60px;
  padding: 30px 20px;
  background: var(--accent);
  text-align: center;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--sage-dark);
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: var(--leaf);
  font-weight: bold;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--sage-dark);
}
.footer-copy {
  font-size: 14px;
  color: #6b7a6b;
}
.section-box {
  padding: 30px 20px;
  border-radius: 12px;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
}
.section-box p {
  margin-bottom: 10px;
}
p {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
  color: #555;
}
section {
  margin-bottom: 60px;
}