
.info-container{
  gap: 28px;               /* a bit more breathing room */
  align-items: stretch;
}

/* -------------------------
   HERO CARD FEEL
   ------------------------- */

.info-container:first-of-type{
  margin: 18px 18px 0;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1a1a1a, #121212);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 46px rgba(0,0,0,0.55);
}

/* tighten hero text */
.info-container:first-of-type .text-container p{
  max-width: 62ch;
}

/* hero image polish */
.info-container:first-of-type .image-container img{
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
}

/* -------------------------
   CTA ROW (price + qty + button)
   ------------------------- */

.ghs-cta{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.ghs-price{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* Make qty look like your new “white card” controls */
.ghs-qty{
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 4px 6px;
}

.ghs-qty .quantity-input{
  width: 46px;
  height: 28px;
  font-size: 14px;
}

.ghs-qty .quantity-count{
  width: 28px;
  font-size: 20px;
}

/* make button feel like your “pill UI” language */
.cart-button.ghs-cart{
  height: 40px;
  padding: 0 16px;
  border-radius: 14px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-button.ghs-cart:hover{
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.22);
}

.cart-button.ghs-cart:active{
  transform: translateY(0) scale(0.98);
}

/* -------------------------
   SECOND SECTION (scenarios)
   ------------------------- */

.info-container:nth-of-type(2){
  margin: 18px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(18,18,18,0.55);
  border: 1px solid rgba(255,255,255,0.08);
}

/* carousel stays but looks more “integrated” */
.info-container:nth-of-type(2) .carousel{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

/* -------------------------
   RESPONSIVE
   ------------------------- */

@media (max-width: 1100px){
  .info-container{
    padding: 0;
    align-items: center;
  }

  .info-container:first-of-type,
  .info-container:nth-of-type(2){
    margin: 12px;
    padding: 14px;
  }
    .ghs-cta{
    justify-content: center;
  }
}

@media (max-width: 900px){
  /* stack like your global info-container already does,
     just improve spacing */
  .ghs-cta{
    gap: 10px;
  }

  .cart-button.ghs-cart{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 500px){
  .ghs-price{
    font-size: 18px;
  }
}

.ghs-scenarios{
  margin: 32px 18px;
}

.ghs-section-title{
  text-align: center;
  margin-bottom: 24px;
}

/* GRID */
.ghs-scenario-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* CARD */
.ghs-scenario-card{
  display: flex;
  align-items: stretch;
  gap: 18px;

  background: linear-gradient(180deg, #1a1a1a, #121212);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;

  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.55);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ghs-scenario-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.7);
}

/* IMAGE */
.ghs-scenario-card img{
  flex: 0 0 45%;
  max-width: 45%;
  height: 100%;
  min-height: 220px;

  object-fit: cover;
  display: block;
}

/* CONTENT */
.ghs-scenario-content{
  flex: 1;
  padding: 18px 18px 18px 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ghs-scenario-content h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghs-scenario-content p{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

/* -------------------------
   RESPONSIVE
   ------------------------- */

@media (max-width: 1000px){
  .ghs-scenario-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  .ghs-scenario-card{
    flex-direction: column;
  }

  .ghs-scenario-card img{
    max-width: 100%;
    width: 100%;
    min-height: 180px;
  }

  .ghs-scenario-content{
    padding: 14px 16px 18px;
  }

  .ghs-scenario-content h3{
    font-size: 14px;
  }

  .ghs-scenario-content p{
    font-size: 13px;
  }
}