/**
 * Pro Farben – Frontend Styles
 *
 * Exactly matches Farben.html styling for color swatches
 * on product pages and any other page using the shortcode.
 */

/* --- Info Block (Category wrapper) --- */
.pro-farben-block.info-block {
    margin-bottom: 6px !important;
}

.pro-farben-block.info-block + .pro-farben-block.info-block {
    margin-top: 4px !important;
}

.single-product .pro-farben-block.info-block {
    margin-bottom: 6px !important;
}

.single-product .pro-farben-block.info-block + .pro-farben-block.info-block {
    margin-top: 4px !important;
}

/* --- Title with orange left border --- */
.pro-farben-block .info-title {
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    /* text-transform: uppercase; */
    color: #1e2e65;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    border-left: 4px solid #F2920F;
    padding-left: 10px;
    line-height: 1.25;
}

/* --- Color Grid (flex-wrap for multi-line) --- */
.pro-farben-block .color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* --- Individual Color Item --- */
.pro-farben-block .color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* --- Circle Swatch --- */
.pro-farben-block .color-swatch {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    outline: 1px solid #e0e0e0;
    transition: transform 0.2s ease;
}

.pro-farben-block .color-item:hover .color-swatch {
    transform: scale(1.1);
    outline-color: #F2920F;
}

/* --- Color Name --- */
.pro-farben-block .color-name {
    font-family: 'Sen', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666;

    max-width: 81px;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;

    /* Silbentrennung (hyphenation) */
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
}

/* --- Texture Swatch (image instead of solid color) --- */
.pro-farben-block .color-swatch--texture {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
