#ptc-customizer-wrap {
    font-family: Arial, sans-serif;
    margin: 12px 0;
}

.ptc-section {
    background: #fff;
    border: 1px solid #4286F3;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.ptc-section-title {
    color: #4286F3;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 8px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #33CC33;
}

/* DROP AREA — very compact single line */
.ptc-drop-area {
    border: 1px dashed #4286F3;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    background: #f8f9ff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.ptc-drop-area:hover, .ptc-drop-area.dragover {
    background: #e8f0fe;
}
.ptc-upload-icon { font-size: 16px; flex-shrink: 0; }
.ptc-drop-text { color: #4286F3; font-size: 12px; font-weight: 600; margin: 0; }
.ptc-drop-sub  { color: #aaa; font-size: 10px; margin: 0; }

/* STATUS */
#ptc-upload-status { margin-top: 6px; }
.ptc-success {
    color: #2e7d32; font-weight: 600;
    background: #f0fff0; border: 1px solid #33CC33;
    border-radius: 5px; padding: 5px 8px;
    display: flex; align-items: center; gap: 6px;
    font-size: 11px;
}
.ptc-success img {
    width: 30px; height: 30px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #ccc;
    flex-shrink: 0;
}
.ptc-error {
    color: #e74c3c; background: #fff5f5;
    border: 1px solid #e74c3c;
    border-radius: 5px; padding: 5px 8px;
    font-size: 11px;
}
.ptc-loading { color: #4286F3; font-size: 11px; padding: 4px 0; display: block; }
.ptc-required-note { color: #e74c3c; font-size: 10px; margin: 3px 0 0; }

/* LIVE PREVIEW — small beside upload */
#ptc-preview-wrap { margin-top: 8px; }
.ptc-preview-title {
    color: #33CC33; font-size: 12px; font-weight: 700; margin: 0 0 5px;
}
#ptc-preview-container {
    position: relative;
    display: inline-block;
    width: 130px;
}
#ptc-shirt-img {
    width: 130px;
    height: auto;
    border-radius: 5px;
    display: block;
    border: 1px solid #eee;
}
#ptc-design-overlay-wrap {
    position: absolute;
    top: 20%; left: 25%;
    width: 50%; height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#ptc-design-overlay {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}
.ptc-preview-note {
    color: #ccc; font-size: 9px; margin: 2px 0 0; font-style: italic;
}

/* COMMENT BOX — simple small */
#ptc-comment-section textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 6px 8px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    resize: none;
    box-sizing: border-box;
    color: #555;
}
#ptc-comment-section textarea:focus {
    border-color: #4286F3;
    outline: none;
}
