.elementor-1076 .elementor-element.elementor-element-dfb035f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:22px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1076 .elementor-element.elementor-element-dfb035f.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-1076 .elementor-element.elementor-element-dfb035f{--width:86.564%;}}@media(max-width:1024px) and (min-width:768px){.elementor-1076 .elementor-element.elementor-element-dfb035f{--width:586px;}}/* Start custom CSS for html, class: .elementor-element-ea6ae79 */header {
  padding: opx 0px; /* Adjust padding */
  margin-bottom: 10px; /* Adjust margin to push content lower */
}



/* Fully Updated & Responsive CSS with Extended Features */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f9f9f9;
  padding: 20px;
}

.progress-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.progress-step {
  flex: 1;
  text-align: center;
  font-weight: bold;
  color: #aaa;
  position: relative;
  min-width: 100px;
}

.progress-step.active {
  color: #f0aa00;
}

.progress-step::after {
  content: "●";
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #f0aa00;
}

.main-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Left card with cars */
.card {
  flex: 2.5;
  min-width: 320px;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* Each car block */
.car-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 40px 0;
  flex-wrap: wrap;
}

.car-section img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.car-info {
  flex: 1;
  padding: 0 30px;
  min-width: 220px;
}

.car-info h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}

.car-info p {
  font-size: 17px;
}

.features {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.features span {
  font-size: 22px;
  cursor: pointer;
  padding: 6px;
  border-radius: 5px;
  transition: transform 0.2s ease, background-color 0.2s ease;
  background: #f2f2f2;
}

.features span:hover {
  transform: scale(1.3);
  background-color: #ffe6b3;
  color: #f0aa00;
}

.notes {
  font-size: 15px;
  margin-top: 10px;
  color: #444;
}

.car-price {
  text-align: center;
  min-width: 150px;
}

.car-price div {
  font-size: 28px;
  color: #c00;
  margin-bottom: 15px;
  font-weight: bold;
}

.btn {
  background: #FBBD29;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn:hover {
  background: #fff;
  transform: scale(1.05);
}

/* Right summary */
.summary {
  flex: 0.7;
  min-width: 230px;
  max-height: 50vh;
  overflow-y: auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.summary h3 {
  border-bottom: 2px solid #f0aa00;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.summary p {
  margin: 10px 0;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
  }

  .summary {
    width: 100%;
    max-height: none;
    margin-top: 25px;
  }

  .car-section {
    flex-direction: column;
    align-items: center;
  }

  .car-info {
    padding: 20px 0;
    text-align: center;
  }

  .car-price {
    text-align: center;
    margin-top: 15px;
  }

  .features {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .car-section img {
    width: 100%;
    max-width: 280px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}/* End custom CSS */