.double-proposal-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.double-proposal-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.double-proposal-popup {
  background: white;
  color: black;
  border-radius: 20px;
  max-width: 870px;
  width: 100%;
  padding: 40px 20px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  @media (max-width: 900px) {
    grid-template-columns: 1fr;
    margin-inline: 1rem;
    padding: 20px 16px;
  }
}
.double-proposal-popup .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.double-proposal-popup .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
  
  @media (min-width: 900px) {
    grid-column: span 2;
  }
}
.double-proposal-popup .subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  @media (min-width: 900px) {
    grid-column: span 1;
  }
}
.double-proposal-popup .products {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  @media (min-width: 900px) {
    grid-column: span 1;
    grid-row: span 2;
    margin-bottom: 0;
  }
}
.double-proposal-popup .product {
  background: #fff;
  color: #222;
  border-radius: 16px;
  padding: 1rem;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #222;
  border-radius: 16px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  justify-content: space-between;

}
.double-proposal-popup .product-image {
  /* width: 120px;
  height: 120px; */
  background: #eee;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.double-proposal-popup .product-info {
  font-size: 1rem;
  text-align: center;
}
.double-proposal-popup .buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  @media (min-width: 900px) {
    grid-column: span 1;
    margin-top: 5rem;
  }
}
.double-proposal-popup .button {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.2s;
}
.double-proposal-popup .button.primary {
  background: #232526;
  color: #fff;
}
.double-proposal-popup .button.link {
  background: none;
  color: black;
  text-decoration: underline;
}
@media (max-width: 900px) {
  
}
