/* .configuration-section {
  background-image: url("../images/configuration/background-theme.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  min-height: 800px !important;
  padding: 40px 0 60px;
  color: #fff;
} */

.configuration-section {
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-image: url("../images/configuration/background-theme.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0 60px;
  color: #fff;
}

.configuration-header {
  margin-bottom: 40px;
}
.fit-content {
  max-width: 1366px;
  margin: 0 auto;
  padding-inline: 15px;
}

.configuration-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.configuration-info i {
  color: var(--primary);
  font-size: 22px;
  font-weight: bold;
}

.configuration-heading h1 {
  font-size: 42px;
  font-weight: 600;
}

.configuration-heading p {
  font-size: 30px;
  font-weight: 800;
  color: #aecc00;
}

.configuration-menu {
  display: flex;
  justify-content: flex-end;
}

.specs-card {
  max-width: 200px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  backdrop-filter: blur(22px);
  cursor: default;
  flex-direction: row;
}
.akx-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

#viewer {
  width: 100%;
  max-width: 900px;
}

#bike360 {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.akx-specification h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 28.9px;
  color: var(--primary);
  margin-bottom: 3px;
}
.akx-specification p {
  font-size: 20px;
  line-height: 28.9px;
  font-weight: 800;
  font-family: var(--ff-secondary);
  margin: 0;
  color: var(--primary);
}

.texture-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.texture-card {
  position: relative;
  width: 200px;
  height: 120px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
  opacity: 0.65;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45); /* separation shadow */
  transition:
    transform 0.35s ease,
    opacity 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    width 0.35s ease;
  touch-action: manipulation;
  z-index: 5;
}
.texture-card:not(.active) {
  backdrop-filter: blur(12px);
}
.texture-card:nth-child(1) {
  border-bottom-left-radius: 0;
}
.texture-card:nth-child(2) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.texture-card:nth-child(3) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.texture-card:nth-child(4) {
  border-top-left-radius: 0;
}

.texture-thumb {
  width: 64px;
  height: 64px;
  overflow: hidden;
  flex-shrink: 0;
}

.texture-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.texture-card img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}
.texture-card p {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  transition: font-size 0.3s ease;
}

.texture-card.active {
  width: 260px;
  opacity: 1;
  z-index: 20;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  height: 200px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.75);
}
#viewer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#bike360 {
  max-width: 880px;
  max-height: 558px;
  cursor: grab;
}

#prevBtn i,
#nextBtn i {
  display: inline-block;
  padding: 14px 17px;
  border-radius: 50px;
  color: var(--primary);
  font-weight: bolder;
  letter-spacing: 1px;
  border: 3px solid transparent;
  background:
    linear-gradient(#373737, #373737) padding-box,
    linear-gradient(115deg, var(--tertiary), var(--primary), var(--tertiary))
      border-box;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}
#prevBtn:hover,
#nextBtn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

#prevBtn,
#nextBtn {
  background: transparent;
  border: 0;
  border-radius: 100px;
}

#prevBtn i,
#nextBtn i {
  font-size: 20px;
  color: #fff;
}

.texture-card.active .texture-thumb {
  width: 133px !important;
  height: 64px;
  position: absolute;
  transform: translateX(-90px);
  z-index: 2;
}
.texture-card.active p {
  margin-left: 70px;
  font-size: 20px;
  line-height: 28.9px;
  color: #fff;
}
.texture-card.active .texture-thumb img {
  width: 100%;
  height: 100%;
}
.texture-card p {
  font-size: 15px;
}

.configuration-menu a button {
  border-color: var(--primary);
  background-color: var(--primary);
  padding: 12px 25px 12px;
  font-weight: 500;
  max-height: 50px;
  font-size: 16px;
  color: var(--secondary) !important;
  border-radius: 4px;
  text-align: center;
}
.configuration-menu a button:hover {
  border-color: #d3d0d052;
  background-color: var(--secondary);
  color: var(--primary) !important;
}

.bike-preview {
  max-height: 100%;
  object-fit: contain;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.bike-preview.fade-out {
  opacity: 0;
  transform: scale(0.95);
}
.bike-preview.fade-in {
  opacity: 1;
  transform: scale(1);
}
.configuration-header {
  margin-bottom: 40px;
}
.row {
  margin-left: 0;
  margin-right: 0;
}

/* ------------responsive----------- */
/* Extra small devices (≤576px) */
@media (max-width: 576px) {
  .configuration-heading h1 {
    font-size: 28px;
  }

  .specs-card {
    flex-direction: column;
    height: auto;
    padding: 10px;
    gap: 8px;
  }

  .akx-specification h6 {
    font-size: 14px;
  }

  .akx-specification p {
    font-size: 18px;
  }

  .akx-image-wrapper {
    width: 100%;
    margin-bottom: 15px;
  }

  #bike360 {
    width: 100%;
    min-width: 650px;
    max-height: 800px;
    height: auto;
  }
  #prevBtn i,
  #nextBtn i {
    padding: 7px 8.5px;
    font-size: 10px;
    display: none;
  }

  .texture-selector {
    flex-direction: row;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .texture-card {
    width: 150px;
    height: 150px;
    flex-direction: column;
  }

  .texture-card.active {
    width: 180px;
    height: 200px;
    flex-direction: column;
    border-radius: 8px;
  }
  .texture-card.active p {
    margin-left: 0;
  }

  .texture-card.active p {
    padding-top: 100px;
  }
  .texture-card.active .texture-thumb {
    transform: translateX(0);
  }
  .configuration-header {
    gap: 10px;
  }

  .configuration-heading h1 {
    font-size: 26px;
  }
}

/* Small devices (577px - 767px) */
@media (min-width: 577px) and (max-width: 767px) {
  .configuration-heading h1 {
    font-size: 32px;
  }

  .specs-card {
    flex-direction: row;
    height: 90px;
    padding: 12px;
  }

  .akx-specification h6 {
    font-size: 15px;
  }

  .akx-specification p {
    font-size: 19px;
  }

  .akx-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  #viewer {
    padding-top: 120px;
  }

  #bike360 {
    max-width: 85%;
    max-height: 400px;
  }

  .texture-selector {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  .texture-card {
    width: 150px;
    height: 150px;
    flex-direction: column;
  }

  .texture-card.active {
    width: 180px;
    height: 200px;
    flex-direction: column;
    border-radius: 8px;
  }
  .texture-card.active p {
    margin-left: 0;
  }

  .texture-card.active p {
    padding-top: 100px;
  }
  .texture-card.active .texture-thumb {
    transform: translateX(0);
  }
}

/* Medium devices (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .configuration-heading h1 {
    font-size: 36px;
  }

  .specs-card {
    height: 100px;
    max-width: 180px;
  }

  #bike360 {
    max-width: 90%;
    max-height: 450px;
  }

  .texture-selector {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    height: auto;
  }

  .texture-card {
    width: 180px;
    height: 150px;
    flex-direction: column;
  }

  .texture-card.active {
    width: 220px;
    height: 200px;
    flex-direction: column;
    border-radius: 8px;
  }
  .texture-card.active p {
    margin-left: 0;
  }

  .texture-card.active p {
    padding-top: 100px;
  }
  .texture-card.active .texture-thumb {
    transform: translateX(0);
  }
}

/* Large devices (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .configuration-heading h1 {
    font-size: 40px;
  }

  .specs-card {
    height: 108px;
  }

  #bike360 {
    max-width: 100%;
  }

  .texture-selector {
    height: 500px;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .texture-card {
    width: 200px;
    height: 150px;
    flex-direction: column;
  }

  .texture-card.active {
    width: 260px;
    height: 200px;
    flex-direction: column;
    border-radius: 8px;
  }
  .texture-card.active p {
    margin-left: 0;
  }

  .texture-card.active p {
    padding-top: 100px;
  }
  .texture-card.active .texture-thumb {
    transform: translateX(0);
  }
}

/* Extra large devices (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .configuration-section {
    padding: 40px 30px 60px;
    min-height: 850px;
  }

  .configuration-heading h1 {
    font-size: 42px;
  }

  #bike360 {
    max-width: 92%;
    max-height: 520px;
  }

  .texture-selector {
    height: 560px;
  }

  .texture-card {
    width: 200px;
    height: 120px;
  }

  .texture-card.active {
    width: 260px;
    height: 200px;
  }
}

/* ------------------------payment form --------------------*/
.payment-subsection {
  padding: 23px 23px 2px 23px;
}

.payment-image-wrapper {
  position: relative;
}
.Akx-image {
  width: 100%;
  height: auto;
  display: block;
}

.logo-image {
  position: absolute;
  width: 116px;
  top: 38px;
  left: 34px;
  z-index: 10;
}

.stepper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.stepper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-counter {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dcdcdc;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-bottom: 8px;
}

.stepper-item.active .step-counter {
  background: #22a95f;
  color: #fff;
}

.stepper-item p {
  font-size: 14px;
  margin: 0;
}

.stepper-line {
  flex: 1;
  height: 2px;
  border-bottom: 2px dashed #cfcfcf;
  margin: 0 20px 45px;
}

.color-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.color-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin: 3px;
  background-color: #d8ef55; /* inner fill color */
  border: 2.5px solid #fff; /* outer ring */
  outline: 1px solid #cee73c; /* outer ring */
  display: inline-block;
}

.color-name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-transform: capitalize;
}
.payment-navigation {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}

.payment-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-heading .dropdown {
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.variant-heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 25px;
  color: #000;
}
.customization-card {
  background-color: #f9f9f9cc;
  border: 1px solid #16161633;
  padding: 11.5px 23px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.customization-card-content h6,
.final-price-card-content h6 {
  font-weight: 600;
  font-size: 17px;
  line-height: 30px;
  color: var(--secondary);
  margin-bottom: 5px;
}
.customization-card-content p,
.final-price-card-content p {
  font-weight: 400;
  font-size: 11px;
  color: #000;
  margin: 0;
}

.customization-link {
  text-decoration: none;
  color: #3f64d4;
  text-align: end !important;
  font-weight: 600;
  font-size: 16px;
  margin: 8px 0 25px 0;
  display: block;
}
.final-price-card {
  background-color: #f9f9f9cc;
  border: none;
  padding: 11.5px 23px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-direction: row;
  align-items: center;
}
.color-heading,
.features-heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 14px;
  color: #000;
}

.features-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 41px;
}
.features-content h6 {
  color: #7d7d7d;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 5px;
}
.features-content p {
  color: #000;
  font-size: 17px;
  line-height: 20px;
  margin: 0;
}
.booking-amount-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.booking-amount-text {
  color: #0000008f;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin: 0;
}
.booking-amount {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
  color: #000;
}
.next-button {
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background-color: #000;
  display: block;
  padding: 18px 0;
  border-radius: 6px;
}
.amount {
  margin: 0;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  color: #000;
}
.personal-form .form-control,
.personal-form .form-select {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: #555;
}

.personal-form .form-control::placeholder {
  color: #bfbfbf;
  font-weight: 400;
}
.personal-details-heading {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
}
.terms {
  color: #ec2929 !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
}
.checking-section {
  font-size: 12px;
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 93px;
}
.otp-input {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: #555;
}

.otp-timer {
  font-size: 13px;
  color: #888;
}

.resend-otp {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.resend-otp:hover {
  text-decoration: underline;
}
.otp-details-heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: var(--secondary);
  margin-bottom: 22px;
}
.otp-form {
  margin-bottom: 355px;
}
.summary-column {
  background: #fff;
  padding: 28px 30px;
}

.details-box {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.details-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
}

.details-row span {
  color: #555;
}

.details-row b {
  color: #000;
}

.important-box {
  background: #fff7e5;
  border-left: 3px solid #f3c772;
  border-radius: 8px;
  padding: 15px 15px;
  margin-bottom: 25px;
}

.important-box ul {
  margin: 0;
  padding-left: 20px;
}

.important-box li {
  margin-bottom: 6px;
  font-size: 13px;
  color: #000;
}

section {
  display: none;
}

.section-active {
  display: block;
}
