/* Main content layout */
.make-buy-content-wrapper {
  display: flex;
  gap: 40px;
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* Options */
.make-buy-option {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  animation: make-buy-slideInUp 0.8s ease-out forwards;
  opacity: 0;
  transition: all 0.3s ease;
}

.make-buy-buy-section {
  border-color: rgba(239, 68, 68, 0.2);
  animation-delay: 0.1s;
  height: fit-content;
}

.make-buy-make-section {
  border-color: rgba(16, 185, 129, 0.2);
  animation-delay: 0.3s;
  height: fit-content;
}

.make-buy-chosen {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(52, 211, 153, 0.05)
  );
  border-color: rgba(16, 185, 129, 0.3);
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.make-buy-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.make-buy-chosen:hover {
  transform: scale(1.02) translateY(-3px);
}

/* Option Headers */
.make-buy-option-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.make-buy-option-icon {
  font-size: 4em;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.make-buy-buy-icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.make-buy-make-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.make-buy-option-title {
  font-size: 2em;
  font-weight: 700;
  color: var(--heading-color, #1e3a8a);
  margin-bottom: 5px;
}

.make-buy-option-subtitle {
  font-size: 1.1em;
  color: var(--secondary-color, #64748b);
  font-weight: 400;
}

.make-buy-chosen-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  animation: make-buy-pulse 2s infinite ease-in-out;
}

.make-buy-badge-icon {
  font-size: 1em;
}

/* Criteria Lists */
.make-buy-criteria-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.make-buy-criteria-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.make-buy-negative {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.05),
    rgba(248, 113, 113, 0.05)
  );
  border: 1px solid rgba(239, 68, 68, 0.1);
}

.make-buy-positive {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(52, 211, 153, 0.05)
  );
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.make-buy-criteria-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.make-buy-criteria-icon {
  font-size: 2em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.make-buy-criteria-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.make-buy-criteria-title {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--heading-color, #1e3a8a);
  margin-bottom: 5px;
  line-height: 1.3;
  text-align: center;
}

.make-buy-criteria-desc {
  font-size: 0.85em;
  color: var(--text-color, #64748b);
  line-height: 1.4;
}

/* VS Section */
.make-buy-vs-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80px;
  animation: make-buy-fadeIn 0.8s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.make-buy-vs-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
  z-index: 2;
  position: relative;
}

.make-buy-vs-text {
  font-size: 1.2em;
  font-weight: 700;
  color: white;
}

.make-buy-vs-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #8b5cf6, transparent);
  z-index: 1;
}

/* Bottom Summary */
.make-buy-summary {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
  animation: make-buy-fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 0;
  max-width: 90%;
}

.make-buy-summary-icon {
  font-size: 1.5em;
}

.make-buy-summary-text {
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}

/* Animations */
@keyframes make-buy-slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes make-buy-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes make-buy-fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes make-buy-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .make-buy-content-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .make-buy-vs-section {
    width: 100%;
    height: 60px;
    flex-direction: row;
  }

  .make-buy-vs-line {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: linear-gradient(to right, transparent, #8b5cf6, transparent);
  }

  .make-buy-summary {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .make-buy-option {
    padding: 20px;
  }

  .make-buy-option-icon {
    font-size: 3em;
    width: 80px;
    height: 80px;
  }

  .make-buy-option-title {
    font-size: 1.6em;
  }

  .make-buy-criteria-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .make-buy-summary {
    flex-direction: column;
    gap: 10px;
    padding: 12px 20px;
  }
}
