body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

.site-header {
      position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
  font-family: Arial, sans-serif;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 15px; /* jarak logo & tulisan */
}

.logo {
  height: 40px;
  width: auto;
}

.brand-name {
  font-size: 20px;
  font-weight: bold;
  color: #b77a7a;
}

.nav-icons a {
  margin-left: 20px;
  font-size: 20px;
  text-decoration: none;
  color: #b77a7a; /* sama dengan brand */
  transition: color 0.3s ease;
}

.nav-icons a:hover {
  color: #d99c9c; /* warna saat hover */
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-icons {
    margin-top: 10px;
  }

  .nav-icons a {
    margin: 0 10px 5px 0;
    display: inline-block;
  }
}

.container {
  display: flex;
  max-width: 1200px;
  margin: 20px auto;
  gap: 20px;
  padding: 0 20px;
}

.sidebar {
  width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.sidebar h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  margin: 20px 0 10px;
}

.sidebar p {
  margin: 5px 0;
  font-size: 14px;
}

.main-content {
  flex: 1;
}

.produk-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.produk-item {
  background: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.produk-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  z-index: 1;
}

.produk-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.produk-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d9a3a3;
  color: white;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge.sold-out {
  background: #aaa;
}

.produk-item h3 {
  margin: 10px 0 5px;
  font-size: 14px;
}

.harga {
  color: #e67373;
  font-weight: bold;
}

.harga del {
  color: #999;
  font-size: 12px;
}

.produk-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.produk-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.produk-item img {
  width: 100%;
  height: auto;
}

.produk-item .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e1bcbc;
  color: white;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge.sold-out {
  background: #aaa;
}

.harga {
  color: #e67373;
  font-weight: bold;
}

.harga del {
  color: #999;
  font-size: 12px;
}

.site-footer {
  background-color: #f7e6e6;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

.site-footer {
  background-color: #f7e6e6;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 1px;
  color: #444;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-col p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-col form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-col input[type="email"] {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.footer-col button {
  background: #d9a7a7;
  border: none;
  padding: 8px 15px;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
}

.footer-col .social-icons {
  margin-top: 10px;
}

.footer-col .social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #555;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}