
/* Minimal styling for the "Similar Items" section */
.similar-items {
    padding: 40px 0;
    background-color: #ffffff;
}
.similar-items .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.similar-items h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    text-align: center;
}
.similar-items .items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.similar-items .item {
    width: 200px;
    text-align: center;
}
.similar-items .item img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
}
.similar-items .item p {
    margin-top: 8px;
    font-size: 1rem;
    color: #333;
}
