.section-title {
    text-align: left;
    margin: 20px 0 7px 0;
    color: white;
    font-size: 18;
    font-weight: 600;
    font-family: Arial, sans-serif;
    padding: 3px 20px;
    border: 2px solid #333;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(50, 50, 50, 0.8));
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.color-grid {
     display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    column-gap: 20px;
    row-gap: 40px;
}

.color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
  justify-content: center;
    background: transparent;
    padding: 2px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

img.swatch-image {
      width: 150px;
    height: 150px;
    border-radius: 10px;
}
.color-swatch.textures img.swatch-image{
  height: 120px;
}
.swatch-label {
    font-size: 15px;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(50, 50, 50, 0.8));
    padding: 4px 10px;
    border-radius: 6px;
    line-height: 1.2;
    box-sizing: border-box;
  margin-top: 5px
}

/* Individual image styling - no longer using sprite positioning */
