body {
  font-family: 'Montserrat', sans-serif;
  background: #fff7f8;
  color: #5c3a3a;
  overflow-x: hidden;
}

.script-font {
  font-family: 'Dancing Script', cursive;
  color: #ff8fab;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.nav-link {
  font-weight: 500;
  color: #5c3a3a !important;
  transition: color 0.3s;
}
.nav-link:hover { color: #ff8fab !important; }

.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #ffe4e6 0%, #fff7f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #5c3a3a;
}

.hero-content h1 {
  font-size: 4rem;
  animation: fadeUp 2s ease forwards;
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

.btn-primary {
  background-color: #ff8fab;
  border: none;
  border-radius: 30px;
  transition: all 0.3s;
}
.btn-primary:hover {
  background-color: #ffb3c6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,143,171,0.4);
}

.highlight {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.highlight:hover { transform: translateY(-8px); }

.cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #ff8fab;
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  padding: 2px 6px;
}

footer {
  background: #ffe4e6;
  color: #5c3a3a;
}


/* ✨ Our Promise Section Fix */
.promise-section {
  background-color: #fff7f8;
}

.promise-box {
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 6px 18px rgba(255, 143, 171, 0.1);
  padding: 30px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.promise-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 143, 171, 0.2);
}

.promise-box h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c3a3a;
  margin-bottom: 8px;
}

.promise-box p {
  font-size: 0.95rem;
  color: #a06c6c;
  margin: 0;
}

/* Responsive alignment fix */
@media (max-width: 768px) {
  .promise-box {
    margin-bottom: 15px;
  }
}

/*=================== Products Css ===================*/
/* 🍰 Product Grid Styles */
.products {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff7f8 0%, #ffeef2 100%);
}

.products h2 {
  font-family: 'Dancing Script', cursive;
  color: #ff8fab;
  font-size: 3rem;
  margin-bottom: 50px;
}

.product-card {
  background:#fff;
  border-radius:18px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  overflow:hidden;
  transition:.3s;
  height:100%;
}
.product-img {
    height:220px; 
    overflow:hidden;
}
.product-img img {
    width:100%; height:100%; 
    object-fit:cover;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255,143,171,0.3);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}
.price {color:#ff8fab; font-weight:600; margin-top:4px;}
.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h5 {
  font-weight: 600;
  color: #5c3a3a;
}

.product-info p {
  color: #a06c6c;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.product-info .price {
  font-size: 1.1rem;
  color: #ff8fab;
  font-weight: 600;
}

.add-to-cart {
  background: #ff8fab;
  border: none;
  border-radius: 25px;
  color: #fff;
  padding: 8px 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background: #ffb3c6;
  transform: translateY(-3px);
}
.product-desc {
  color:#a06c6c;
  font-size:0.9rem;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;          /* ← 2 lines only */
  -webkit-box-orient:vertical;
  min-height:40px;
}
