/* Ye master file hogi, jisme tu imports karega */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Components */
@import url('navbar.css');
@import url('hero.css');
@import url('marquee.css');
@import url('collection.css');
@import url('fresh-atta.css');
@import url('product-card.css');
@import url('custom-multigrain.css');
@import url('wholesale.css');
@import url('videocard.css');
@import url('recipe.css');
@import url('about-us.css');
@import url('contact.css');
@import url('footer.css');


html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #fff;
  scroll-behavior: smooth;
}

h2 {
  font-size: 2rem;
  color: #111010;
  margin-bottom: 10px;
  font-weight: 700;
}

/* ==============================
   Disable Selection & Drag
============================== */
body,
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  pointer-events: none;
  /* disables right click on image */
}

/* ===== Toast Notification Styles (Bottom Center) ======= */
.toast-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  /* avoid blocking clicks on page */
}

.toast {
  padding: 12px 20px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 500;
  background: #333;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  min-width: 220px;
  text-align: center;
  animation: slideUp 0.4s ease, fadeOut 0.5s ease 2.5s;
  pointer-events: auto;
}

.toast.success {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.toast.warning {
  background: linear-gradient(135deg, #e67e22, #f39c12);
}

.toast.info {
  background: linear-gradient(135deg, #2980b9, #3498db);
}

.toast.fade-out {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}