/* GLOBAL */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: linear-gradient(to bottom, transparent 0%, pink 50%, #cde7f9 100%);
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 0;
}

body::before {
  width: 100px;
  height: 100px;
  top: 100px;
  left: 30px;
}

body::after {
  width: 120px;
  height: 120px;
  bottom: 100px;
  right: 40px;
}

/* HEADER */
header {
  background-image: url('Image/background1.jpg'); 
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
}

.header-overlay {
  background: rgba(255, 255, 255, 0.65);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 0.8rem;
}

/* TITLE */
.title-text {
  font-size: 2.8rem;
  color: #d62857;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin: 0 auto 3px auto;
}

.subtitle {
  font-size: 1.2rem;
  color: #5a5a5a;
  margin-bottom: 50px;
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: center;
  background-color: #c91450;
  padding: 0.7rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffdce8;
}

/* SECTION */
.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
}

.section-title {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: #c1005a;
  margin-bottom: 1.5rem;
}

/* PRODUCT BOX */
.product-box {
  background: #fff0f5;
  padding: 1.5rem;
  border-radius: 20px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;

  /* Tambahan fix */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
}

.product-box img.brand-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.product-box h2,
.product-box h3 {
  margin: 1rem 0 0.5rem;
  color: #9d174d;
  font-size: 1.5rem;
}

.product-box button {
  background-color: #c91450;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
}

.product-box button:hover {
  background-color: #a01140;
}

/* PRODUCT LIST */
.product-list {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 10px;
  padding-left: 10px;
}

.product-item {
  text-align: center;
  margin-bottom: 1.5rem;
}

.product-item img {
  width: 90%;
  max-width: 300px;
  border-radius: 12px;
  margin: 10px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-item img:hover {
  transform: scale(1.03);
}

.product-item p {
  margin: 0;
}

.product-item a {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #c1005a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-item a:hover {
  color: #85003a;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  background: transparent;
}

footer h3 {
  margin-bottom: 0.5rem;
  color: #b00040;
}

footer p {
  margin: 0.5rem 0;
  font-weight: 500;
}

footer a {
  color: #c91450;
  font-weight: bold;
  text-decoration: none;
}

.tiktok-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.tiktok-icon:hover {
  transform: scale(1.2) rotate(5deg);
}
