body {
  background-color: #fef6f9;
}

.main-form-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── NAVBAR ── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1rem;
  position: relative;
}

.logo {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 0.1rem;
}

.hamburger-line {
  display: block;
  width: 34px;
  height: 3px;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  z-index: 99;
  padding-bottom: 0.5rem;
}

.nav-links.open {
  display: flex;
  flex-direction: column;
}

.nav-links li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid #f3e8f0;
}

.nav-links li a:hover {
  color: #E91E8C;
}

.mobile-social-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  padding: 0.75rem 1.25rem;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  color: #1a1a1a;
}

.social-icon:hover svg {
  color: #E91E8C;
}

.nav-right-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icons {
  display: none;
}

/* ── TOP BANNER ── */

.top-banner-img {
  display: block;
  width: 85%;
  max-width: 340px;
  margin: 1.75rem auto 1rem;
  border-radius: 14px;
}

/* ── PRODUCT CARDS ── */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  width: 100%;
  max-width: 480px;
}

.product-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.product-card:active {
  transform: scale(0.97);
}

.product-card img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.card-label {
  text-align: center;
  padding: 0.5rem 0.25rem;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1a1a;
}

/* ── BOTTOM TEXT ── */

.bottom-text-section {
  width: 100%;
  max-width: 480px;
  padding: 1.5rem 1rem 2rem;
  text-align: center;
}

.bottom-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
