:root{
  --prive-primary:#111827;
  --prive-accent:#E6B450;
  --prive-bg:#ffffff;
  --prive-border:#e5e7eb;
  --prive-radius:14px;
}

#prive-wizard-container,
#prive-wizard-container *{
  box-sizing:border-box;
}

.prive-wizard-container{
  max-width:900px;
  margin:40px auto;
  background:var(--prive-bg);
  padding:34px;
  border-radius:18px;
  overflow:hidden;
}

.prive-step-progress{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
}

.prive-step-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#d1d5db;
  display:inline-block;
}

.prive-step-dot.active{
  width:20px;
  background:var(--prive-accent);
}

.prive-step{
  display:none;
  animation:priveFade .3s ease;
}

.prive-step.active{
  display:block;
}

@keyframes priveFade{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:none}
}

.prive-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}

.prive-choice-card{
  border:1px solid #d7dce3;
  border-radius:12px;
  padding:18px;
  cursor:pointer;
  transition:border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  box-shadow:none;
}

.prive-choice-card:hover{
  border-color:#b8c0ca;
  box-shadow:0 4px 10px rgba(15,23,42,.05);
}

.prive-choice-card.is-selected,
.prive-menu-card.is-selected{
  border-color:var(--prive-accent);
  background:#fffdf5;
  box-shadow:0 0 0 2px rgba(230,180,80,.18);
}

.prive-choice-main{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.prive-choice-icon{
  width:48px;
  height:48px;
  background:#f3f4f6;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.prive-choice-icon .dashicons,
.prive-choice-icon .material-symbols-outlined,
.prive-choice-icon i{
  font-size:22px;
  line-height:1;
}

.prive-choice-label{
  margin:0;
  font-size:17px;
  font-weight:600;
  color:#111827;
  line-height:1.35;
  overflow-wrap:anywhere;
}

.prive-choice-side{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.prive-choice-price-note{
  margin:0;
  color:#6b7280;
  font-size:13px;
}

.prive-choice-radio{
  width:28px;
  height:28px;
  border-radius:50%;
  border:2px solid #d1d5db;
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.prive-choice-card.is-selected .prive-choice-radio{
  border-color:var(--prive-accent);
}

.prive-choice-card.is-selected .prive-choice-radio::after{
  content:"";
  position:absolute;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--prive-accent);
}

.prive-input-wrap,
.prive-contact-grid,
.prive-step textarea,
.prive-step input,
.prive-step select{
  width:100%;
  max-width:100%;
}

.prive-step input,
.prive-step textarea,
.prive-step select{
  border:1px solid #d1d5db;
  border-radius:12px;
  min-height:48px;
  padding:11px 14px;
  font-size:16px;
}

.prive-step textarea{ min-height:110px; }

.prive-date-range-wrap{
  display:grid;
  gap:12px;
}

.prive-date-range-calendar .flatpickr-calendar{
  box-shadow:none;
  border:1px solid var(--prive-border);
  border-radius:12px;
}

.prive-date-range-calendar .flatpickr-day.selected,
.prive-date-range-calendar .flatpickr-day.startRange,
.prive-date-range-calendar .flatpickr-day.endRange{
  background:var(--prive-accent);
  border-color:var(--prive-accent);
}

.prive-date-range-calendar .flatpickr-day.inRange{
  background:rgba(230,180,80,.18);
  border-color:rgba(230,180,80,.15);
}

.prive-progress-footer{
  display:flex;
  gap:20px;
  align-items:center;
  margin-top:26px;
  position:static !important;
  border-top:1px solid #eceff3;
  padding-top:14px;
}

.prive-progress-track{
  flex:1;
  height:5px;
  background:#e7ebf0;
  border-radius:10px;
  overflow:hidden;
}

.prive-progress-fill{
  height:100%;
  width:0%;
  background:var(--prive-accent);
  transition:width .3s ease;
}

.prive-btn{
  border-radius:999px;
}

.prive-progress-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.prive-btn{
  min-height:48px;
  min-width:120px;
  padding:0 18px;
  font-size:16px;
}

.prive-card-style-solid .prive-choice-card{ background:#f8fafc; }
.prive-card-style-outline .prive-choice-card{ box-shadow:none !important; }

@media (max-width:860px){
  .prive-wizard-container{padding:20px}
  .prive-progress-footer{flex-wrap:wrap}
  .prive-progress-track{order:3;width:100%;flex:0 0 100%}
}
