:root {
  --lr-ink: #131313;
  --lr-muted: #757575;;
  --lr-line: #ffffff40;
  --lr-soft: #f5f8fc;
  --lr-soft-2: #eef3f8;
  --lr-accent: #b0dd0e;
  --lr-accent-2: #0b5c56;
  --lr-white: #fff;
  --lr-shadow: 0 24px 60px rgba(18, 38, 63, .12);
}
.lr-form {
  /* max-width: 860px; */
  margin: 0px auto 50px auto;
  padding: 40px;
  border: 1px solid var(--lr-line);
  border-radius: 10px;
  font-family: 'Inter';
  background: var(--lr-ink);
}

.lr-form h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.lr-header {
  padding-bottom: 22px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--lr-line);
}

.lr-kicker {
  margin: 0 0 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lr-accent);
}

.lr-subtitle {
  margin: 10px 0 0;
  font-size: .98rem;
  color: var(--lr-muted);
  max-width: 580px;
}

/* .lr-section {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--lr-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
} */

.lr-section h3 {
  margin: 0px 0 50px 0;
  padding: 0px 0 10px 0;
  /* border-radius: 14px; */
  /* background: linear-gradient(135deg, #dff7f3 0%, #cbeee8 100%); */
  font-size: 25px;
  letter-spacing: 0;
  color: var(--lr-white) !important;
  border-bottom: 2px solid var(--lr-line);
  font-family: 'Inter';
  font-weight: 500;
  text-transform: capitalize;
}

.lr-field {
  margin: 24px 0;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 5px;
}

.lr-field label.title {
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 500;
  color: var(--lr-accent);
  font-family: 'Inter';
}

.lr-field input[type=text],
.lr-field input[type=email],
.lr-field input[type=tel],
.lr-field textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--lr-line);
  border-radius: 8px;
  background: transparent;
  font-size: 16px;
  color: var(--lr-muted);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.lr-field input[type=text]:focus,
.lr-field input[type=email]:focus,
.lr-field input[type=tel]:focus,
.lr-field textarea:focus {
  outline: 0;
  border-color: var(--lr-line);
  background: transparent;
}

.lr-options {
  display: grid;
  gap: 10px;
}

.lr-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border: 1px solid var(--lr-line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
  outline: none;
}

/* .lr-options label:hover {
  border-color: #a7bbc8;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(18, 38, 63, .06);
} */

.lr-options input[type=radio] {
  accent-color: var(--lr-accent);
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.lr-option-label {
  flex: 1;
  min-width: 0;
  color: var(--lr-white);
  font-size: 14px;
}

.lr-option-price {
  margin-left: auto;
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 600;
  color: var(--lr-accent);
}

.lr-image-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px 10px;
  /* margin-top: 8px; */
}

.lr-image-option {
  display: block;
}

.lr-image-option-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lr-image-option-content {
  display: block;
  cursor: pointer;
}

.lr-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 10px;
  border: 1px solid #d5dee8;
  border-radius: 5px;
  background: var(--lr-white);
}

.lr-image-frame img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* .lr-image-option-content:hover .lr-image-frame {
  border-color: #9fb3c3;
  box-shadow: 0 12px 24px rgba(18, 38, 63, .1);
  transform: translateY(-1px);
} */

.lr-image-option-input:checked + .lr-image-option-content .lr-image-frame {
  border-color: var(--lr-ink);
  box-shadow: 0 0 0 2px rgba(23, 32, 51, .18), 0 12px 24px rgba(18, 38, 63, .12);
}

.lr-image-option-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 0 4px;
}

.lr-image-option-indicator {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--lr-line);
  border-radius: 50%;
  background: var(--lr-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  flex: 0 0 auto;
}

.lr-image-option-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lr-accent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .2s ease;
}

.lr-image-option-input:checked + .lr-image-option-content .lr-image-option-indicator {
  border-color: var(--lr-accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .12);
}

.lr-image-option-input:checked + .lr-image-option-content .lr-image-option-indicator::after {
  transform: translate(-50%, -50%) scale(1);
}

.lr-image-option-text {
  font-size: 14px;
  color: var(--lr-muted);
  flex: 1;
  min-width: 0;
}

.lr-hidden {
  display: none !important;
}

.lr-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.lr-btn,
.lr-submit {
  padding: 8px 25px !important;
  border-radius: 0px !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease !important;
}
#lrNextBtn, #lrSubmitBtn{
  background: var(--lr-accent) ;
  border: 1px solid var(--lr-accent);
}
#lrPrevBtn {
    background: #111;
    border: 1px solid var(--lr-line);
}
#lrNextBtn:hover,
#lrSubmitBtn:hover {
  background: var(--lr-white);
  color: var(--lr-ink) !important;
  border: 1px solid var(--lr-white) !important;
}

.lr-btn[disabled] {
  opacity: .80;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.lr-submit {
  margin-left: auto;
}

.lr-note {
  font-size: 13px;
  color: var(--lr-muted);
}

.lr-estimate {
  margin: 0 0 24px;
  border: 1px solid var(--lr-accent);
  border-radius: 4px;
  background: #0f0e0e;
  overflow: hidden;
  padding: 20px;
}

.lr-estimate-empty {
  padding: 18px;
  color: var(--lr-muted);
}

.lr-estimate-row,
.lr-estimate-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--lr-line);
}
.lr-estimate-row{
  
  padding: 0px 0 15px 0;
  margin: 0px 0 15px 0;
}

.lr-estimate-row span strong {
    color: var(--lr-white);
    font-weight: 500;
}

.lr-estimate-row span:nth-child(2) {
    color: var(--lr-accent);
}

.lr-estimate-row small {
  display: block;
  margin-top: 0px;
  color: var(--lr-muted);
}

.lr-estimate-total {
  border-bottom: 0;
  /* background: #edf8f6; */
  font-size: 20px;
  font-weight: 700;
  color: var(--lr-accent);
}

.lr-estimate-disclaimer {
  margin: -8px 0 22px;
  color: var(--lr-muted);
  font-size: .92rem;
}

.lr-estimate-note {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid var(--lr-line);
  color: var(--lr-muted);
  font-size: 13px;
}

.lr-estimate-note-alert {
  border-color: var(--lr-accent);
  color: var(--lr-white);
}

.lr-form-message {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.45;
}
 
.lr-form-message-success {
  border: 1px solid #9fd8c8;
  background: #e9f8f3;
  color: #0f5f50;
}
 
.lr-form-message-error {
  border: 1px solid #f0b8b8;
  background: #fff1f1;
  color: #9b1c1c;
}

.lr-field .lr-name-field:nth-child(2) {
    margin: 24px 0;
}

@media (max-width: 700px) {
  .lr-form {
    margin: 0px auto 25px auto;
    padding: 12px;
  }

  .lr-form h2 {
    font-size: 1.8rem;
  }

  /* .lr-section {
    padding: 18px;
    border-radius: 18px;
  } */

  .lr-section h3 {
    font-size: 1.35rem;
    margin: 0px 0 30px 0;
  }

  .lr-image-options {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .lr-image-frame {
    min-height: 60px;
  }
  .lr-image-frame img {
    max-height: 70px;
  }

  .lr-nav {
    flex-wrap: wrap;
  }

  .lr-btn,
  .lr-submit {
    width: 100%;
    justify-content: center;
  }

  .lr-submit {
    margin-left: 0;
  }

  .lr-options label,
  .lr-estimate-row,
  .lr-estimate-total {
    align-items: flex-start;
  }

  .lr-option-price {
    font-size: .82rem;
  }
  .lr-field {
    margin: 12px 0;
    padding: 12px;
  }
  .lr-field .lr-name-field:nth-child(2){
    margin: 12px 0;
  }
  .lr-btn, .lr-submit{
    font-size: 14px !important;
    padding: 6px 10px !important;
  }
  .lr-estimate{
    padding: 12px;
  }
  .lr-estimate-row{
    margin: 0px 0 10px 0;
    padding: 0px 0 10px 0;
  }
}


/*  */

.lr-image-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 10px;
    border: 1px solid #d5dee8;
    border-radius: 8px 8px 0 0;
    background: var(--lr-white);
}
 
.lr-image-option-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 4px;
    background: #7171712e;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
}
.lr-field label.title {
    display: block;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    color: var(--lr-white);
    font-family: 'Inter';
}

.lr-image-option-meta{
margin: 0 !important;
}