/* 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;
  padding-top: 0;
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HEADER TEXT (REPLACES LOGO) */
.shop-title {
  font-size: 32px;
  font-weight: 800;
  font-style: italic;
  color: #000;
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 5px;
}


/* HEADER LAYOUT */
.header-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* OPENING SOON TEXT */
.opening-soon {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  margin-bottom: 0;
  line-height: 1;
}

/* PRODUCT GRID — 2 × 2 */
.main-layout {
  width: 90%;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px auto;
  align-items: stretch;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border: 2px solid black; /* gold tone */
  border-radius: 12px;
  width: 100%;
  max-width: 250px;
  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 IMAGE */
.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* PRODUCT TITLE */
.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 5px;
}

/* PRODUCT PRICE */
.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;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE FIX */
@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;
  }

  .shop-title {
    font-size: 26px;
  }
}
