@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

.font-playfair { font-family: 'Playfair Display', serif; }
.font-poppins { font-family: 'Poppins', sans-serif; }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }


/* Order Success Page */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  top: -10px;
  animation: fall linear forwards;
}

@keyframes fall {
  to {
    transform: translateY(100vh) rotate(720deg);
  }
}

.success-checkmark {
  animation: scaleIn 0.5s ease-out forwards;
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.fade-up {
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* View Page Styles */
.btn-primary {
    background-color: #656551;
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a5a47;
    transform: translateY(-1px);
}

.image-hover {
    transition: opacity 0.3s ease;
}

.quick-add {
    backdrop-filter: blur(10px);
}

#product-grid {
    display: flex;
    flex-wrap: wrap;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
