body {
    padding-top: 70px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #faf7f5;
  color: #333;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);

  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  z-index: 1000;

  display: flex;
  justify-content: center; /* CENTER CONTAINER */
}

/* INNER WRAPPER (IMPORTANT FIX) */
.navbar-inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #e48aa8;
}
/* ================= GLOBAL ================= */
.container {
  padding: 120px 20px 40px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.hidden {
  display: none;
}

/* ================= INDEX HERO ================= */
.hero {
  padding: 140px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #fff0f5);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #e48aa8;
  color: white;
  border-radius: 30px;
  text-decoration: none;
}

/* FEATURES */
.features {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 20px;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ================= SHOP ================= */
.shop-hero {
  text-align: center;
  padding: 120px 20px 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  position: relative;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffb6c1;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 12px;
}

.price {
  color: #e48aa8;
  font-weight: bold;
  margin: 10px 0;
}

button {
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: #e48aa8;
  color: white;
  cursor: pointer;
}

/* ================= GIFT PAGE ================= */
.gift-wrapper {
  padding: 120px 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

/* CARD STYLE (premium feel) */
.gift-card {
  background: white;
  padding: 40px 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin-top: 20px;
  animation: fadeIn 0.6s ease;
}

/* TITLES */
.gift-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.gift-subtitle {
  color: #777;
}

/* IMAGE */
.gift-image {
  width: 260px;
  border-radius: 14px;
  margin-bottom: 15px;
}

/* MESSAGE BOX */
.gift-message {
  background: #fff7fa;
  padding: 15px;
  border-radius: 12px;
  margin: 15px 0;
}

/* TEXT */
.gift-text {
  color: #555;
}

/* FINAL SECTION */
.final-bloom h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin-top: 10px;
}


/* LETTER */


.signature {
  margin-top: 15px;
  font-style: italic;
  color: #888;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.product-card:hover .product-img {
  transform: scale(1.03);
}

.about-hero {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #fff0f5);
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 10px;
}

.about-hero p {
  color: #666;
}

/* GRID LAYOUT (THIS MAKES IT MODERN) */
.about-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

/* CARDS */
.about-block {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.about-block:hover {
  transform: translateY(-6px);
}

.about-block h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.boldtext {
    font-weight: bold;
}





