/* RESET */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: #000;
  background-color: #fff;
}

/* BODY LAYOUT */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO BANNER */
.hero-banner img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

/* HEADER */
.header-center {
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

.shop-title {
  font-size: 32px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 10px 0 5px;
}

.opening-soon {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

/* PRODUCT GRID */
.main-layout {
  width: 90%;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px auto;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 5px;
}

.product-card p {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

/* FOOTER */
.footer {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 0;
  margin-top: 40px;
}

.footer p {
  margin: 5px 0;
}

/* WHATSAPP BUTTON */
.whatsapp-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.whatsapp-btn {
  background: #000;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .main-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-card {
    max-width: 280px;
    margin: 0 auto;
  }

  .shop-title {
    font-size: 26px;
  }

  .opening-soon {
    font-size: 18px;
  }
}
/* LOGO IMAGE */
.logo {
  width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 3px;  /* minimal space below logo */
  border-radius: 8px;
  object-fit: contain;
}

.hero-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0 auto;      /* removes extra spacing */
  line-height: 1.4;
  letter-spacing: 0.3px;
}

section {
  margin-bottom: 0;         /* removes extra space below section */
  padding-bottom: 0;
}

