
.pixar-root { max-width:960px; margin:30px auto; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial; padding:0 16px; }
.pixar-controls { display:flex; gap:12px; align-items:center; justify-content:center; margin-bottom:12px; flex-wrap:wrap; }
.pixar-label { font-weight:600; color:#34495e; display:block; margin-bottom:6px; text-align:center; }
.pixar-controls input[type="number"] { width:120px; padding:10px; border-radius:8px; border:1px solid #e0e0e0; text-align:center; }
.pixar-controls select { padding:10px; border-radius:8px; border:1px solid #e0e0e0; }
.pixar-btn { background:#ffac33; border:none; padding:12px 22px; border-radius:24px; color:#fff; font-weight:700; cursor:pointer; box-shadow: 0 6px 0 rgba(0,0,0,0.06); }
.pixar-spinner { width:54px; height:54px; border:6px solid rgba(0,0,0,0.08); border-top:6px solid #ffac33; border-radius:50%; margin:12px auto; display:none; animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.pixar-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; margin-top:20px; }
.pixar-item { background:#fff; border-radius:10px; padding:8px; text-align:center; box-shadow:0 8px 20px rgba(0,0,0,0.04); }
.pixar-item img { width:100%; height:260px; object-fit:cover; border-radius:8px; display:block; }
.pixar-name { margin-top:8px; font-weight:700; color:#233b4d; }
.pixar-empty { text-align:center; color:#666; padding:30px; }
.pixar-regenerate { position:fixed; right:28px; bottom:28px; background:rgba(255,172,56,0.92); color:#fff; border:none; padding:12px 18px; border-radius:28px; cursor:pointer; box-shadow:0 12px 30px rgba(0,0,0,0.12); display:none; z-index:9999; }
@media(max-width:900px){ .pixar-grid{grid-template-columns:repeat(2,1fr);} .pixar-regenerate{display:none !important;} }
@media(max-width:480px){ .pixar-grid{grid-template-columns:repeat(1,1fr);} }
