/* Discover section with product card */
.discover-grid-container {
  display: grid;
  grid-template-columns: 75% 25%;
  gap: 30px;
  align-items: start;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  margin-top: var(--text-margin);
  margin-bottom: var(--text-margin);
  height: auto-fit;
  text-align: center;
}

.product-card .price {
  text-align: center;
  width: 100%;
  margin: 0.5rem;
}

.product-card p {
  margin: 0.5rem;
}

.product-card .btn {
  width: 100%;
}

.product-card .orbx-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

.product-card .orbx-buttons .btn {
  flex: 1;
}

/* Desktop layout - 3 columns */
.expandable-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 75px;
}

.expandable-container-spacing {
  margin-bottom: 0;
}

/* Mobile layout - stacked */
@media (max-width: 768px) {
  .discover-grid-container {
    grid-template-columns: 1fr;
  }

  .product-card .orbx-buttons {
    flex-direction: column;
  }

  .expandable-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expandable-container-spacing {
    margin-bottom: 0;
  }
}
