.photo-bride{background-image:url('https://images.unsplash.com/photo-1525507119028-ed4c629a60a3?auto=format&fit=crop&w=1000&q=85')}.photo-blue{background-image:url('https://images.unsplash.com/photo-1610030469983-98e550d6193c?auto=format&fit=crop&w=800&q=85')}.bridal{background-image:url('https://images.unsplash.com/photo-1525507119028-ed4c629a60a3?auto=format&fit=crop&w=2200&q=85')}

/* Checkout Modal */
.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 12, 14, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.checkout-modal.open {
  opacity: 1;
  visibility: visible;
}
.checkout-card {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.checkout-modal.open .checkout-card {
  transform: translateY(0);
}
.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #ede8e3;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.checkout-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  margin: 4px 0 0 0;
  color: #230b0f;
}
.checkout-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-summary {
  background: #faf7f5;
  border: 1px solid #eee5dd;
  border-radius: 4px;
  padding: 16px;
}
.checkout-summary h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8d6042;
  margin: 0 0 12px 0;
}
.checkout-summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 140px;
  overflow-y: auto;
  margin-bottom: 12px;
}
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #3e332a;
}
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e2d7ce;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #230b0f;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5a4b41;
}
.checkout-form input, .checkout-form textarea {
  padding: 10px 14px;
  border: 1px solid #dcd4ce;
  border-radius: 3px;
  font-size: 14px;
  font-family: inherit;
  color: #230b0f;
  background: #ffffff;
}
.checkout-form input:focus, .checkout-form textarea:focus {
  outline: none;
  border-color: #8d6042;
}
.checkout-note {
  font-size: 12px;
  color: #84756c;
  text-align: center;
  margin: 6px 0 0 0;
}