
/* ===== VIN CARD ===== */
.vin-wrapper{
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.vin-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    text-align: center;
	margin: 0 auto;
}
.vin-card h2 { margin-bottom: 8px; }
.vin-card p { color:#666; margin-bottom:20px; }
.vin-card input {
    width:100%;
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
    margin-bottom:15px;
    text-transform:uppercase;
}
.vin-card button {
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#667eea;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}
#vinResult { margin-top:15px; }

/* ===== OFFER DESIGN ===== */
.offer-wrapper {
    display:none;
    width:100%;
    margin:0 auto;
    padding:40px 20px;
}

.offer-grid{
	display:flex;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    border-radius: 14px;
  /* grid-template-columns:320px minmax(0, 1fr); */
  /* gap:40px; */
}

.offer-left h2 {
    font-size:32px;
    margin-bottom:10px;
}
.offer-left p { color:#555; font-size:14px; }
/* .offer-steps { margin-top:30px; } */
.offer-steps{
  margin-top:22px;
 /* height:calc(100% - 110px); */
  overflow:auto;
  padding-right:10px;
}
.offer-steps::-webkit-scrollbar{ width:6px; }
.offer-steps::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.18);
  border-radius:10px;
}

.offer-step {
    margin-bottom:14px;
    font-weight:600;
}
.offer-step.active { color:#e10600; }

.offer-form{
  grid-column:2;
  background:#fff;
  padding:28px;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  width:70%;
}

.offer-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:18px;
}
.offer-field label {
    font-size:13px;
    font-weight:600;
}
.offer-field select,
.offer-field input {
    width:100%;
    padding:8px;
    border-radius:10px;
    border:1px solid #ccc;
    margin-top:6px;
}

.ownership-options {
    margin-top: 20px;
}

.own-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}

.own-option input[type="radio"] {
    accent-color: #2563eb;
    transform: scale(1.1);
}

.own-option:hover {
    border-color: #2563eb;
}

.own-option input[type="radio"]:checked + span {
    font-weight: 600;
}

.own-option input[type="radio"]:checked {
    accent-color: #2563eb;
}

.own-option:has(input[type="radio"]:checked) {
    border-color: #2563eb;
    background: #f0f6ff;
}
.condition-help {
    font-size: 14px;
    color: #555;
    margin: 12px 0;
    line-height: 1.6;
}

.condition-link {
    display: inline-block;
    font-size: 14px;
    color: #e10600;
    margin-bottom: 20px;
    text-decoration: none;
    font-weight: 600;
}

.condition-link:hover {
    text-decoration: underline;
}

/* reuse ownership card UI */
.ownership-options {
    margin-top: 20px;
}

.own-option:hover {
    border-color: #2563eb;
}

.own-option input {
    accent-color: #2563eb;
}

.own-option.selected {
    border-color: #2563eb;
    background: #f0f6ff;
}
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.own-option.disabled {
    opacity: 0.45;
    pointer-events: none;
}
body {
    font-family: Arial, sans-serif;
    background: #fff;
}

.damage-wrapper {
    max-width: 720px;
    margin: 40px auto;
    text-align: center;
}

.condition-help {
    color: #555;
    font-size: 14px;
}

/* ===== OUTER CONTAINER ===== */
.vehicle-box {
    background: #f4f6fb;
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
}

/* ===== BLUE BORDER AREA ===== */
.vehicle-area {
    position: relative;
    max-width: 520px;
    height: 260px;
    margin: auto;
    background: #eef4ff;
    border: 2px solid #2f80ed;
    border-radius: 16px;
    overflow: hidden;
}

/* ===== CENTER GRID LINES ===== */
.vehicle-area::before,
.vehicle-area::after {
    content: "";
    position: absolute;
    background: rgba(0,0,0,0.15);
}

.vehicle-area::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.vehicle-area::after {
    height: 100%;
    width: 1px;
    left: 50%;
    top: 0;
}

/* ===== CAR IMAGE ===== */
.vehicle-area img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 190px;
    z-index: 3;
    pointer-events: none;
}

/* ===== QUADRANTS ===== */
.quadrant {
    position: absolute;
    width: 50%;
    height: 50%;
    cursor: pointer;
    z-index: 2;
}

.q1 { top: 0; left: 0; }
.q2 { top: 0; right: 0; }
.q3 { bottom: 0; left: 0; }
.q4 { bottom: 0; right: 0; }

.quadrant:hover {
    background: rgba(47,128,237,0.08);
}

.quadrant.active {
    background: rgba(47,128,237,0.25);
    box-shadow: inset 0 0 0 2px #2f80ed;
}

/* ===== BUTTONS ===== */
.btn-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
	gap: 16px;
}

.offer-btn {
    background: #e10600;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    height: 46px;
    margin-top: 10px;
}

.offer-btn-first {
    background: #e10600;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: auto;
    height: 46px;
}

.offer-btn.back{
  background:#ddd;
  color:#000;
}

.offer-btn.next{
  background:#e10600;
  color:#fff;
}

#offerMessage.success {
	background: #e6f9ee;
	color: #0f5132;
	padding: 12px;
	border-radius: 6px;
	font-weight: 600;
}

#offerMessage.error {
	background: #fdecea;
	color: #842029;
	padding: 12px;
	border-radius: 6px;
	font-weight: 600;
}

/* MAIN WRAPPER */
.peddle-offer-ui {
  padding: 30px;
  background: #f4f6f8;
}

/* FLEX CONTAINER */
.offer-container {
  display: flex;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* LEFT SIDE */
.offer-left {
    background: #fff;
    /* border-radius: 18px; */
    padding: 28px;
    position: sticky;
    top: 24px;
    height: calc(100vh - 48px);
    overflow: hidden;
    width: 30%;
    border-right: 1px solid #eee;
}

.offer-left h4 {
  font-size: 22px;
  margin-bottom: 5px;
}

.offer-left p {
  color: #666;
  font-size: 14px;
}

.offer-id {
  margin-top: 20px;
  font-size: 14px;
}

/* RIGHT SIDE */
.offer-right {
  width: 65%;
  padding: 40px;
}

.offer-right h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 25px;
}

.offer-amount {
  font-size: 96px;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 30px;
}

.offer-btn-yellow {
  background: #ffd43b;
  color: #000;
  border: none;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
}

.offer-btn-yellow:hover {
  background: #fbc02d;
}

.offer-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
}

.offer-amount-big {
  font-size: 90px;
  font-weight: 700;
  color: #1a73e8;
  line-height: 1;
  margin-top: 15px;
}

#instantOfferScreen {
  max-width: 760px;          
  margin: 0 auto;           
  padding: 35px;
}

#instantOfferScreen .two-col-step {
  align-items: center;
  gap: 30px;
}

#instantOfferScreen .step-left {
  flex: 1;
}

#instantOfferScreen .step-right {
  flex: 1;
  text-align: left;
}

.side-section{
  font-weight:700;
  color:#6b7280;
  margin:14px 0 6px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* step items */
.side-item{
  font-size:14px;
  padding:8px 0 8px 14px;
  color:#9aa0a6;
  border-left:2px solid transparent;
  line-height:1.2;
}

.side-item.is-active{
  color:#e10600;
  border-left-color:#e10600;
  font-weight:600;
}
.side-item:not(.is-active):not(.is-done){
  color:#9aa0a6;
}
.side-item.is-done{
  color:#111;
}
#vinStep #vin{
  padding:14px;
  border-radius:10px;
  border:1px solid #ccc;
  margin-top:6px;
  text-transform:uppercase;
  letter-spacing:0.5px;
  height:46px;
}

.ps-info.ps-info--blue{
  display:flex;
  align-items:center;
  justify-content:flex-start;   
  gap:10px;
  width:100%;
  max-width:100%;              
  margin:0 0 22px 0;           
  padding:14px 18px;
  border:2px solid #d30000;
  background:#eef6ff;          
  border-radius:10px;
  color:#d30000;
  font-weight:600;
  text-align:left;              
  box-sizing:border-box;
}

.ps-info.ps-info--blue .ps-info-icn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  flex:0 0 22px;
}

.ps-info.ps-info--blue .ps-info-text{
  line-height:1.25;
}
.ps-title {
    display: flex;
    justify-content: center;
}
.ps-form{
  align-items:flex-start;
}

#f_color{ position:relative; }

.ps-color-row{
  display:flex;
  align-items:center;
  gap:12px;
  cursor:text;
}

#colorSwatch.ps-color-box{
  width:16px;
  height:16px;
  border:1px solid #cfcfcf;
  border-radius:2px;
  background:#f4f4f4;
  flex:0 0 16px;
}

.ps-color-input-wrap{
  display:flex;
  flex-direction:column;
  flex:1;
  min-width:0;
}

.ps-floating-label{
  font-size:12px;
  color:#e10600;
  line-height:1.1;
  margin-bottom:2px;
}

.ps-color-input{
  border:0;
  outline:0;
  background:transparent;
  font-size:16px;
  line-height:1.2;
  padding:0;
}

.ps-color-menu{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 6px);
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:10px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  max-height:240px;
  overflow:auto;
  display:none;
  z-index:9999;
}

.ps-color-option{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  font-size:16px;
  cursor:pointer;
  user-select:none;
}

.ps-color-option:hover{ background:#f5f7fb; }

.ps-color-swatch{
  width:16px;
  height:16px;
  border:1px solid #cfcfcf;
  border-radius:2px;
  flex:0 0 16px;
}

.ps-color-option.is-selected{
  background:#eef6ff;
  color:#0b66ff;
}

.ps-color-option.is-disabled{
  opacity:.35;
  pointer-events:none;
}

#f_color.is-open .ps-icn-caret{
  transform:rotate(226deg);
  display:inline-block;
}

/* Boxed field style like Peddle */
.ps-field { margin: 14px 0; }

.ps-input-row{
  display:flex;
  align-items:center;
  gap:12px;

  border:1px solid #d6dbe1;
  border-radius:10px;
  background:#fff;

  padding:12px 14px;
  min-height:56px;
  box-sizing:border-box;
}

.ps-input-row:focus-within{
  border-color:#d30000;
  box-shadow:0 0 0 2px rgba(11,102,255,.12);
}

/* error / ok borders */
.ps-field.ps-error .ps-input-row{ box-shadow:none; }
.ps-field.ps-ok .ps-input-row{ border-color:#0b66ff; }

/* Inputs inside boxed fields */
.ps-input{
  border:0 !important;
  outline:0;
  width:100%;
  background:transparent;
  font-size:16px;
}

/* Select inside boxed field */
.ps-select-input{
  border:0;
  outline:0;
  width:100%;
  background:transparent;
  font-size:16px;
  padding:0;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}

/* caret at far right */
.ps-icn-caret{
  margin-left:auto;
  width:10px;
  height:10px;
  border-right:2px solid #777;
  border-bottom:2px solid #777;
  transform:rotate(45deg);
}

/* label like Peddle */
.ps-floating-label{
  font-size:12px;
  color:#6b7280;
  margin-bottom:2px;
}

/* optional chip */
.ps-chip{
  margin-top:10px;
  padding:10px 14px;
  border-radius:999px;
  border:0;
  background:#f3f4f6;
  font-weight:600;
  cursor:pointer;
}
#colorSearch:focus {
    border: none;
}
#colorSearch {
	padding: 0;
    border: none;
}
input[type=text], input[type=number], input[type=email], input[type=url], input[type=password], input[type=search], input[type=reset], input[type=tel], input[type=date], select, textarea {
    box-shadow: none !important;
}
#f_state{
  position: relative;
}
#f_state.is-open .ps-icn-caret{
  transform: rotate(225deg);
}
#stateSearch {
    border: none;
    padding: 0;
}
#f_color, #f_state { position: relative; }

#colorRow,
#stateRow{
  cursor: pointer;
}

#colorRow .ps-icn-caret,
#stateRow .ps-icn-caret{
  cursor: pointer;
}

#colorSearch,
#stateSearch{
  cursor: text;
}
.ps-error-text {
    color: red;
    font-size: 18px;
}
.vehicle-box{
  position: relative;
  overflow: visible;
  padding-top: 34px;   /* space for top labels */
  padding-bottom: 34px;/* space for bottom labels */
}

.quad-label{
  position: absolute;
  min-width: 160px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 10px;
  border: 2px solid #d00;   /* matches your red box */
  background: #fff;
  border-radius: 4px;
  display: none;            /* show only when selected */
  z-index: 5;
}

/* top row */
.q1-label{ top: 0; left: 25%; transform: translate(-50%, -20%); }
.q2-label{ top: 0; left: 75%; transform: translate(-50%, -20%); }

/* bottom row */
.q3-label{ bottom: 0; left: 25%; transform: translate(-50%, 20%); }
.q4-label{ bottom: 0; left: 75%; transform: translate(-50%, 20%); }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
}

.form-field input,
.form-field select {
    height: 52px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 15px;
    background: #fff;
    transition: all 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
    border-color: #2a5bd7;
    outline: none;
    box-shadow: 0 0 0 2px rgba(42,91,215,0.1);
}

/* Mobile */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-error-message {
    background: #fff4f4;
    color: #c62828;
    border: 1px solid #f5c2c2;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
}
.ownership-popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  animation: fadeInOverlay 0.3s ease forwards;
}

@keyframes fadeInOverlay {
  from { opacity:0; }
  to { opacity:1; }
}

.ownership-popup-box{
  background:#ffffff;
  padding:40px 35px;
  max-width:460px;
  width:90%;
  border-radius:16px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  animation: popupSlide 0.35s ease forwards;
}

@keyframes popupSlide {
  from { transform:translateY(40px); opacity:0; }
  to { transform:translateY(0); opacity:1; }
}

.popup-icon{
  font-size:40px;
  margin-bottom:15px;
}

.ownership-popup-box h3{
  font-size:22px;
  margin-bottom:15px;
  color:#111;
  font-weight:600;
}

.popup-message{
  font-size:15px;
  line-height:1.6;
  color:#555;
  margin-bottom:25px;
}

.popup-btn{
  background:#111;
  color:#fff;
  border:none;
  padding:12px 28px;
  border-radius:30px;
  font-size:14px;
  cursor:pointer;
  transition:all 0.25s ease;
}

.popup-btn:hover{
  background:#000;
  transform:translateY(-2px);
}

@media screen and (max-width: 767px) {
.offer-left h2 {
    font-size: 20px;
}
.offer-left {
    padding: 10px 5px;
}
.offer-left p {
    font-size: 12px;
    line-height: 18px;
}
.offer-form {
    padding: 10px 15px;
    width: 70%;
}
.side-section {
    font-size: 14px;
}
.offer-row {
    grid-template-columns: 1fr;
}
.btn-group {
    display: block;
}
.offer-wrapper {
    padding: 20px 10px;
}
}  

/* ===== Remove Extra Space After Footer ===== */

html, body {
    height: auto !important;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

#page,
.site,
.site-content,
.content-area {
    flex: 1 0 auto;
    min-height: auto !important;
}

footer,
.site-footer {
    margin-top: auto;
}