#omoda-root { display: flex; flex-direction: column; background: #000; color: #fff; font-family: 'Source Sans 3', sans-serif; min-height: 100vh; overflow-x: hidden; }

/* Sidebar/Top section */
.omoda-sidebar { width: 100%; display: flex; flex-direction: column; align-items: center; padding: 20px; border-bottom: 1px solid #222; box-sizing: border-box; }
.logo { font-weight: 800; font-size: 20px; letter-spacing: 2px; margin-bottom: 20px; color: #fff; }

.stats-container { display: flex; gap: 10px; justify-content: center; width: 100%; max-width: 100%; box-sizing: border-box; }
.stat-node { flex: 1; background: rgba(255,255,255,0.05); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid #333; min-width: 0; }
.stat-node strong { display: block; font-size: 18px; color: #fff; }
.stat-node p { font-size: 9px; color: #888; text-transform: uppercase; margin: 0; }

/* Main White Form Area */
.omoda-main-content { flex: 1; background: #fff; color: #000; padding: 20px; border-radius: 30px 30px 0 0; position: relative; margin-top: 10px; box-sizing: border-box; }
.form-container-inner { max-width: 800px; margin: 0 auto; }

.step-dots { text-align: center; margin-bottom: 20px; position: relative; z-index: 10; }
.dot { height: 4px; width: 30px; background: #eee; display: inline-block; margin: 0 4px; transition: 0.3s; }
.dot.active { background: #000; }

.visual-stage { text-align: center; margin-bottom: 20px; position: relative; }
.visual-stage img { max-width: 100%; height: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2)); display: block; margin: 0 auto; }

.title { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 5px; color: #000; }
.subtitle { text-align: center; color: #666; margin-bottom: 30px; font-size: 14px; }

/* Selection Cards */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.card-opt { border: 2px solid #f0f0f0; padding: 20px; cursor: pointer; text-align: center; border-radius: 12px; font-weight: 700; transition: 0.3s; color: #000; display: block; position: relative; }
.card-opt input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.card-opt.selected, .card-opt:has(input:checked) { border-color: #000; background: #f9f9f9; }

/* Color Plates */
/*.plate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 15px; }*/
.plate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.color-plate input { display: none; }
.plate-ui { border: 2px solid #f0f0f0; padding: 5px; text-align: center; border-radius: 10px; cursor: pointer; }
.swatch { display: block; width: 100%; height: 35px; margin-bottom: 8px; border-radius: 4px; border: 1px solid #ddd; }
.color-plate input:checked + .plate-ui { border-color: #000; background: #f9f9f9; }

/* Review Card */
.white-review-card { border: 1px solid #eee; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.06); margin-top: 20px; }
.card-dark-head { background: #000; color: #fff; padding: 20px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.btn-outline { border: 1px solid #fff; padding: 8px 16px; color: #fff; text-decoration: none; font-size: 12px; border-radius: 4px; }
.line { display: flex; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid #f5f5f5; font-size: 14px; }
.line.total { background: #fafafa; font-size: 20px; font-weight: 900; color: #000; border: none; padding: 20px 15px; }

/* Form Inputs Fix */ .form-grid { display: grid; grid-template-columns: 1fr; gap: 15px; } input, textarea { background: #fcfcfc; border: 1px solid #eee; padding: 15px; color: #000; border-radius: 8px; width: 100%; box-sizing: border-box; font-size: 16px; -webkit-appearance: none; }

/* Footer */
.footer-bar { border-top: 1px solid #eee; padding: 20px 0; margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 15px; }
.price-tag { font-size: 20px; font-weight: 800; width: 100%; text-align: center; margin-bottom: 10px; }
.btn-next { background: #000; color: #fff; padding: 15px 40px; border-radius: 6px; border: none; font-weight: 700; cursor: pointer; min-width: 150px; }
.nav-back { background: none; border: none; color: #666; cursor: pointer; font-weight: 600; padding: 10px; }

/* Media Queries */
@media (min-width: 992px) {
    #omoda-root { flex-direction: row; }
    .omoda-sidebar { width: 320px; height: 100vh; position: fixed; border-right: 1px solid #222; border-bottom: none; justify-content: flex-start; padding-top: 60px; }
    .stats-container { flex-direction: column; width: 80%; }
    .omoda-main-content { margin-left: 320px; border-radius: 0; padding: 40px 60px; margin-top: 0; }
    .form-grid { grid-template-columns: 1fr 1fr; }
    .full-width { grid-column: span 2; }
    .price-tag { width: auto; text-align: left; margin-bottom: 0; }
    .card-dark-head { flex-direction: row; justify-content: space-between; align-items: center; }
}