  .galeri-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
    gap: 1rem;
    max-width: 800px;  /* biar nggak terlalu lebar */
    margin: 0 auto;    /* center di tengah */
}

.galeri-container figure {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.galeri-container img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.galeri-container img:hover {
    transform: scale(1.05);
}

.gift {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.gift h2 {
  font-family: 'Sacramento', cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gift-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.gift-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform .3s ease;
}

.gift-card:hover {
  transform: translateY(-5px);
}

.gift-card img {
  max-width: 80px;
  margin-bottom: 1rem;
}

.gift-card h3 {
  margin: .5rem 0;
}

.copy-btn {
  margin-top: .5rem;
  padding: .5rem 1.2rem;
  border: none;
  border-radius: 8px;
  background: #007bff;
  color: white;
  font-size: .9rem;
  cursor: pointer;
  transition: background .3s;
}

.copy-btn:hover {
  background: #0056b3;
}

/* Modal Notifikasi */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: fadeInUp .4s ease;
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.wish {
  padding: 50px 20px;
  background: #f8f9fa;
  text-align: center;
}

.wish-form {
  max-width: 500px;
  margin: 20px auto;
}

.wish-form input,
.wish-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.wish-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: #050002;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.wish-list {
  margin-top: 30px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.wish-item {
  background: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
