/* ===== FIX CHECKOUT SUMMARY PANEL ===== */

/* Bring the modification panel above checkout UI */
.snipcart-cart-summary-edit {
  z-index: 999999 !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fix invisible overlay */
.snipcart-modal--opened {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Restore layout + width */
.snipcart-side-panel {
  width: 420px !important;
  background: rgba(253, 241, 222, 0.98) !important;
  backdrop-filter: blur(10px);
  padding: 20px;
}

/* Restore scrolling */
.snipcart-side-panel__content {
  overflow-y: auto !important;
}

/* ===== RESTORE CLOSE BUTTON ===== */
.snipcart-side-panel__close-button {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #5DADE2;
  border-radius: 50%;
  cursor: pointer;
  color: white !important;
  font-size: 20px;
  margin-left: auto;
  transition: .25s;
}

.snipcart-side-panel__close-button:hover {
  background: #3498DB;
  transform: scale(1.1);
}

/* Matching ORYNDEV branding */
.snipcart-side-panel h1,
.snipcart-side-panel h2,
.snipcart-side-panel h3 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600;
  color: #2C3E50 !important;
}

.snipcart-form__label {
  color: #2C3E50 !important;
}

.snipcart-button-primary {
  background: linear-gradient(135deg, #6b7bff, #4353ff) !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
}

.snipcart-button-primary:hover {
  background: linear-gradient(135deg, #5565ff, #2c3dff) !important;
  transform: translateY(-2px);
}
