/*
Theme Name: Bridge Child
Theme URI: http://demo.qodeinteractive.com/bridge/
Description: A child theme of Bridge Theme
Author: Qode Interactive
Author URI: http://www.qodethemes.com/
Version: 1.0.0
Template: bridge
*/
@import url("../bridge/style.css");
/* ==== Estilo general del checkout a dos columnas ==== */
.custom-checkout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.custom-checkout-left {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.custom-checkout-right {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 30px; /* Mantiene el resumen fijo mientras se hace scroll */
}

.custom-checkout-right h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* Adaptable para pantallas pequeñas */
@media (max-width: 992px) {
  .custom-checkout-wrapper {
    grid-template-columns: 1fr;
  }
  .custom-checkout-right {
    position: static;
  }
}

