.lpvc {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 24px;
    margin: 24px 0;
    font-family: inherit;
    color: #1d1d1f;
}

.lpvc * { box-sizing: border-box; }

.lpvc-preview {
    background: #f7f7f7;
    border-radius: 18px;
    padding: 16px;
    border: 1px solid #e1e1e1;
}

.lpvc-canvas {
    width: 100%;
    height: auto;
    display: block;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ddd;
}

.lpvc-help {
    margin: 10px 0 0;
    font-size: 13px;
    color: #666;
}

.lpvc-panel {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.lpvc-panel h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.lpvc-panel h4 {
    margin: 18px 0 8px;
    font-size: 15px;
}

.lpvc-panel label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
}

.lpvc-panel textarea,
.lpvc-panel input,
.lpvc-panel select {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}

.lpvc-panel textarea {
    min-height: 82px;
    resize: vertical;
}

.lpvc-panel small {
    display: block;
    color: #777;
    font-weight: 400;
    text-align: right;
    margin-top: 3px;
}

.lpvc-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lpvc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lpvc-buttons button,
.lpvc-effects button {
    border: 1px solid #ccc;
    background: #fafafa;
    border-radius: 999px;
    padding: 9px 13px;
    cursor: pointer;
    font-weight: 700;
}

.lpvc-buttons button.active,
.lpvc-effects button.active {
    background: #111;
    border-color: #111;
    color: #fff;
}

.lpvc-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.lpvc-swatches button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}

.lpvc-swatches button.active {
    outline: 3px solid #111;
    outline-offset: 2px;
}

.lpvc-upload {
    margin-top: 15px;
}

.lpvc-effects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.lpvc-pricebox {
    background: #111;
    color: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-top: 14px;
}

.lpvc-pricebox span {
    display: block;
    opacity: .75;
}

.lpvc-pricebox strong {
    display: block;
    font-size: 34px;
    line-height: 1.1;
}

.lpvc-pricebox small {
    color: rgba(255,255,255,.7);
    text-align: left;
}

@media(max-width: 980px) {
    .lpvc { grid-template-columns: 1fr; }
}

@media(max-width: 560px) {
    .lpvc-two { grid-template-columns: 1fr; }
    .lpvc-panel { padding: 14px; }
}
