/* === BASE === */
body.page-template-page-configurator {
    margin: 0;
    background: #f2f2f2;
}

/* === WRAPPER PRINCIPAL === */
#configurator-app {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #f2f2f2;
}

/* === CANVAS CENTRAL === */
.canvas-area {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

canvas {
    width: 700px;
    height: 400px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* === SLIDER === */
.scale {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: #2e2e2e;
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
}

/* === TOOLBAR ESQUERDA === */
.toolbar-left {
    position: absolute;
    left: 40px;
    top: 140px;
    background: #2b2b2b;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.toolbar-left button {
    width: 40px;
    height: 40px;
    background: #3a3a3a;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

/* === CANVAS SWITCH === */
.canvas-tabs {
    position: absolute;
    left: 40px;
    top: 360px;
    background: #2b2b2b;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.canvas-tabs button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: #444;
    color: white;
}

/* === SIDEBAR DIREITA === */
.sidebar {
    position: absolute;
    right: 40px;
    top: 120px;
    width: 280px;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* TÍTULO */
.sidebar h2 {
    margin: 0 0 10px;
}

/* TABS */
.tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.tabs button {
    flex: 1;
    padding: 6px;
    border-radius: 10px;
    border: none;
    background: #ddd;
    cursor: pointer;
}

.tabs button.active {
    background: #c4001a;
    color: white;
}

/* GRID */
#items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

#items button {
    width: 100%;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #ccc;
}

/* CORES */
.colors {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.colors button {
    width: 25px;
    height: 25px;
    border-radius: 6px;
    border: none;
}