body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fffbe7;
  color: #333;
}

.contact {
  font-weight: 500;
  color: #5c3d2e;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  margin: 0.2rem 0 0.5rem;
}

main {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem;
  align-items: flex-start;
}

.qty-btn {
  padding: 4px 10px;
  margin: 5px 4px;
  background-color: #fcd5b5;
  border: none;
  border-radius: 4px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.qty-btn:hover {
  background-color: #ef476f;
  color: white;
}

.size-select {
  padding: 0.4rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}


.product-image-wrapper {
  position: relative;
  display: inline-block;
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); /* Grows to 120% */
  }
}

.fancy-heading {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem; /* or adjust to preferred size */
  font-weight: 700;
  color: #004aad;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0.6rem auto 1rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
  width: fit-content;
  max-width: 90%;
  transition: all 0.3s ease; /* from #bakery-name */
}
.fssai-subtext {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.5rem;
  color: #444;
}

.fssai-subtext span {
  color: #ef476f;
  font-weight: 600;
}


.info-item {
  text-align: center;
  line-height: 1.4; /* Reduced line height */
  background: #fff4e6;
  border-left: 4px solid #f7a072;
  padding: 0.6rem 0.8rem; /* Reduced padding */
  margin: 0.4rem auto;
  width: fit-content;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  font-size: 0.7rem;
}

.highlight-contact {
  font-size: 0.8rem;
  font-weight: 500;
  color: #5c3d2e;
  margin: 0.15rem auto;
}

.fssai-badge {
  margin: 0.5rem auto 1rem;
  text-align: center;
}

.fssai-badge img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  border: 3px solid #f7a072;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fffefb;
  padding: 4px;
  transition: transform 0.3s ease;
}

.fssai-badge img:hover {
  transform: scale(1.05);
}

@keyframes bounceFlash {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
