.hero img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.info {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9; /* Optional: light background to make the box pop */
}

.info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 30px;
}

.contact-box {
  display: inline-block; /* Wraps box tightly around content */
  padding: 40px 60px;
  border: 4px solid #e0e0e0;
  border-radius: 15px; /* Rounded corners */
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.50); /* Soft, elegant shadow */  
}

.info p {
  font-size: 14px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Space between emoji and text */
  text-align: left;
}

.product-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.product-actions .btn {
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  
}

/* Hover */
.btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Call Us */
.product-actions .call {
  border: 2px solid black;
  color: black;
  background: transparent;
}

/* WhatsApp */
.product-actions .whatsapp {
  background: #25D366;
  color: #fff;
}

/* Instagram */
.product-actions .instagram {
  border: 2px solid #e1306c;
  color: #e1306c;
  background: transparent;
}

/* Mobile */
@media (max-width: 768px) {
  .product-actions {
    padding: 0 20px;
  }

  .product-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Mobile Specific Tweaks */
@media (max-width: 480px) {
  .info h1 {
    font-size: 1.5rem;
  }
  
  .contact-box {
    padding: 1rem;
  }
  
  .contact-box p {
    font-size: 1rem;
    justify-content: flex-start; /* Better for reading on very small screens */
    padding-left: 10%; 
  }
}