#designer-wrapper {
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
    margin-top: 20px;
    border-radius: 8px;
}

#designer-toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.designer-btn {
    background: #2d7efb;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.designer-btn:hover {
    background: #1c5ed6;
}

.designer-color {
    width: 40px;
    height: 40px;
    border: none;
    padding: 0;
    cursor: pointer;
}

#designer-canvas-container {
    position: relative;
    width: 450px;
    margin: 0 auto;
}

#designer-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: auto;
    opacity: 0.35; /* léger transparent pour voir la zone */
    pointer-events: none; /* ne bloque pas le canvas */
}

#designer-canvas {
    position: relative;
    z-index: 10;
}

.designer-submit {
    width: 100%;
    background: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.designer-submit:hover {
    background: #1e7e34;
}
