.ps {
  display: flex;
  width: 100%;
  margin: 0 auto 36px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  height: 500px;
  flex-direction: row;
  padding: 0 15px;
  box-sizing: border-box;
}

.ps-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cbcbcb;
  height: 100%;
}

.ps-img-tag {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.ps-content {
  flex: 1.1;
  background: linear-gradient(135deg, #c4ce8d, #3b9806);
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.ps-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ps-desc {
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
  opacity: 0.95;
}

.ps-price {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ps-divider {
  width: 60%;
  height: 1px;
  background-color: white;
  margin: 12px 0;
}

.buy-button {
  display: inline-block;
  text-decoration: none;
  background-color: #d98026;
  color: white;
  border: none;
  padding: 10px;
  width: 200px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 1px;
  align-self: flex-start;
}

.buy-button:hover {
  background-color: #bb6b1f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile & Tablet - Full Width, Left-Right Layout */
@media (max-width: 768px) {
  .ps {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    padding: 15px;
  }

  .ps-img, .ps-content {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .ps-img {
    height: 250px;
    padding: 15px;
  }

  .ps-img-tag {
    max-height: 100%;
  }

  .ps-content {
    padding: 30px 20px;
  }

  .ps-title {
    font-size: 22px;
  }

  .ps-desc {
    font-size: 14px;
  }

  .ps-price {
    font-size: 16px;
  }

  .buy-button {
    width: 180px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .ps {
    flex-direction: column;
  }

  .ps-img, .ps-content {
    min-width: 100%;
  }

  .ps-img {
    height: 220px;
  }
}

/* Optional: Full width container-h if you want all sections consistent */
.container-h {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f2fdf5;
  padding: 40px 20px;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
}

.grid-h {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .grid-h {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .container-h {
    padding: 20px 15px;
  }
}

@media (max-width: 420px) {
  .grid-h {
    grid-template-columns: 1fr;
  }
}
