.fabric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 2rem;
    margin-top: 2rem;
}

  .fabric-item {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fabric-item img {
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.fabric-item h3 {
    margin-bottom: 0.25rem;
}