/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: white;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 24px;
}

.logo img {
  width: 30px;
  height: 30px;
}

.logo span {
  cursor: default;
}

/* Link Navigasi */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

/* Tombol Sign Up */
.signup-btn {
  background-color: black;
  color: white;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.signup-btn:hover {
  background-color: white;
  color: black;
  border: 1px solid black;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 100px;
  background-color: #f4f5f7;
  border-radius: 30px;
  margin: 40px 60px;
  position: relative;
  overflow: hidden;
  height: 600px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: #000;
  cursor: default;
}

.highlight {
  background-color: #f9df58;
  padding: 0 8px;
  display: inline-block;
  transform: rotate(-2deg);
}

.hero-text p {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  cursor: default;
}

.shop-btn {
  margin-top: 25px;
  background-color: black;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background-color: white;
  color: black;
  border: 1px solid black;
}

.hero-image img {
  width: 700px;
  height: auto;
  object-fit: contain;
  margin-left: 80px;
  display: flex;
}

.hero-image {
  position: absolute;
  bottom: 0;
  right: 100px;
}

/* Brand Logos Section */
.brand-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 60px;
  background-color: #f9df58;
  margin-top: 30px;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-logos img {
  height: 50px;
  margin: 0 20px;
  object-fit: contain;
}

.new-arrivals {
  padding: 60px 80px;
  background: #fff;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  cursor: default
}

.section-title span {
  position: relative;
  background: #fff100;
  padding: 0 5px;
  border-radius: 4px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  flex: 1;
  max-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
}

.card img {
  width: 100%;
  height: 250px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.card-info {
  padding: 16px;
}

.card-info h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: default;
}

.card-info .explore {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  font-size: 14px;
}

.card-info .explore p {
  cursor: default;
}

.card-info .explore span {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

/* Section */
.products-favourite {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Judul Section */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.section-title .highlight {
  background-color: #ffeb3b;
  border-radius: 4px;
  padding: 0 8px;
}

/* Card Container */
.favourite-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Card Style */
.favourite-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 550px;
  flex: 1 1 300px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

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

/* Content dalam card */
.favourite-content {
  padding: 20px;
}

.favourite-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: default;
}

.explore {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
}

.explore span {
  cursor: default;
}

.explore .arrow {
  font-size: 1.2rem;
  cursor: pointer;
}

/* Subscribe Section */
.subscribe-section {
  background-color: #f1c93b;
  text-align: center;
  padding: 4rem 1rem;
}

.subscribe-section h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: white;
  font-family: 'Poppins', sans-serif;
  cursor: default;
}

.subscribe-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: white;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  cursor: default;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.subscribe-form input {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  width: 250px;
  font-size: 1rem;
}

.subscribe-form button {
  padding: 0.75rem 1.5rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: white;
  color: black;
  border: 1px solid black;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: default;
}

.footer-brand p {
  margin: 1rem 0;
  color: #ccc;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  cursor: default;
}

.footer-socials a {
  color: black;
  background: #f1c93b;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  display: inline-flex;
  font-size: 1rem;
  transition: background 0.3s;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.footer-socials a:hover {
  background: #d4ab29;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  cursor: default;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.footer-links a:hover {
  color: #fff;
}