/* Gift Registry Grid Styles */
.gift_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
}

.gift_item {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.gift_item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.gift_item h3 {
  color: #5d594d;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  padding: 0;
}

.gift_item p {
  color: #6e6a5f;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
}

.gift_price {
  font-size: 24px;
  color: #b5af47;
  font-weight: 700;
  margin-bottom: 15px;
}

.gift_button {
  display: inline-block;
  padding: 12px 25px;
  background: #b5af47;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.gift_button:hover {
  background: #96913b;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .gift_item {
    flex: 0 1 calc(50% - 15px);
  }
}

@media screen and (max-width: 480px) {
  .gift_item {
    flex: 0 1 100%;
  }
}

/* Bank Details Styles */
.bank_details {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.bank_details h2 {
  color: #5d594d;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.bank_details p {
  color: #6e6a5f;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.account_info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.account_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.account_row:last-child {
  border-bottom: none;
}

.label {
  font-weight: 600;
  color: #5d594d;
  font-size: 16px;
}

.value {
  font-weight: 700;
  color: #b5af47;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .bank_details {
    padding: 20px;
    margin: 30px 0;
  }

  .bank_details h2 {
    font-size: 24px;
  }

  .account_info {
    max-width: 100%;
  }

  .account_row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
