.content-area {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    }

.product-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
    overflow-y: auto;
    padding: 20px;
}

.product {
    padding: 30px;
    background-color: #f9f9f9;
    text-align: center;
    padding-bottom: 100px;

}

.product img {
    width: 100%;
    height: auto;
}

.product h2 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.product p {
  margin: 0;
  font-weight: bold;
}

.product button {
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product button:hover {
  background-color: #555;
}

    .product-view {
        width: 70%;
        padding: 20px;
    }

    .shoe-viewer {
        width: 33%;
        height: 100vh; 
        overflow: hidden;
        border-radius: 10px;
        border: 10px solid #f5c2e7;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1)
    }