/* ==========================================================================
   LAADPUNT AANVRAAG — Frontend Styles
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
    --lpa-green: #4BA630;
    --lpa-gray-100: #F3F4F6;
    --lpa-gray-200: #E5E7EB;
    --lpa-gray-300: #D1D5DB;
    --lpa-gray-500: #6B7280;
    --lpa-gray-700: #374151;
    --lpa-red: #DC3232;
    --lpa-radius: 8px;
    --lpa-transition: 0.3s ease;
}

/* ---------- Reset / Base ---------- */
.lpa-wrap {
    font-family: "Outfit", sans-serif;
    color: black;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
}

.lpa-wrap *,
.lpa-wrap *::before,
.lpa-wrap *::after {
    box-sizing: border-box;
}

.lpa-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Layout ---------- */
.lpa-form-layout {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 100px;
}

.lpa-form-main {
    width: 62.5%;
}

.lpa-sidebar {
    width: 25%;
}

@media (max-width: 1024px) {
    .lpa-form-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .lpa-form-main,
    .lpa-sidebar {
        width: 100%;
        display: contents;
    }
    .lpa-progress { order: 1; }
    .lpa-skeleton { order: 2; }
    .lpa-steps { order: 3; }
    .lpa-product-card { order: 4; }
    .lpa-usp-banner { order: 5; }
    .lpa-review-card { order: 6; }
}

/* ---------- Steps ---------- */
.lpa-step {
    display: none;
}

.lpa-step.is-active {
    display: block;
}

.lpa-wrap .lpa-step h2,
.lpa-wrap .lpa-step h2 strong {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.2em;
    letter-spacing: -1.5px;
    color: #000000;
    margin: 0 0 12px;
}

.lpa-wrap .lpa-step h2 strong {
    font-weight: 700;
}

.lpa-wrap .lpa-step p {
    color: #000000;
    margin-bottom: 30px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.35px;
}

.lpa-wrap .lpa-step p strong {
    color: #000000;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.35px;
}

.lpa-wrap .lpa-step[data-step="2"] p {
    margin-bottom: 10px;
}

.lpa-step[data-step="3"] p {
    margin-top: -2px;
    margin-bottom: 0px;
}

.lpa-wrap.lpa-on-step-4 .lpa-step p {
    margin-bottom: 0px;
}

.lpa-wrap.lpa-on-step-4 .lpa-step strong {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: black;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
    letter-spacing: 0px;
}

/* ---------- Option Cards (Step 1 & 1.5) ---------- */
.lpa-option-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 52px;
}

.lpa-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    height: 250px;
    justify-content: center;
    border: 2px solid #DAE3EA;
    border-radius: var(--lpa-radius);
    cursor: pointer;
    transition: border-color var(--lpa-transition), box-shadow var(--lpa-transition);
    text-align: center;
    background: #fff;
}

.lpa-option-card:hover {
    border-color: #4BA630;
}

.lpa-option-card.is-selected {
    border-color: var(--lpa-green);
    box-shadow: 0 0 0 1px var(--lpa-green);
    background: #A0CE4E1A;
}

.lpa-option-card__icon {
    color: var(--lpa-gray-500);
    width: 96px;
    height: 96px;
}

.lpa-option-card.is-selected .lpa-option-card__icon {
    color: var(--lpa-green);
}

.lpa-option-card__content {
    max-width: 200px;
}

.lpa-option-card__content strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.lpa-option-card__content span {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    color: black;
    font-size: 17px;
    letter-spacing: -0.35px;
}

/* Detailed cards (step 1.5) */
.lpa-option-cards--wide {
    grid-template-columns: 1fr 1fr;
}

.lpa-option-card--detailed {
    align-items: flex-start;
    text-align: left;
    padding: 24px;
}

.lpa-option-card--detailed .lpa-option-card__content {
    width: 100%;
}

.lpa-option-cards--quotation-type .lpa-option-card {
    height: auto;
}

.lpa-option-card--telefoon,
.lpa-option-card--mail {
    max-width: 100%;
}

.lpa-option-card--telefoon .lpa-option-card__icon,
.lpa-option-card--mail .lpa-option-card__icon,
.lpa-option-card--telefoon svg,
.lpa-option-card--mail svg {
    width: 36px;
    height: 36px;
}

.lpa-option-card--telefoon .lpa-option-card__benefits svg,
.lpa-option-card--mail .lpa-option-card__benefits svg {
    width: 17px;
    height: 17px;
}

.lpa-option-card--telefoon .lpa-option-card__content,
.lpa-option-card--mail .lpa-option-card__content {
    max-width: 100%;
}

.lpa-option-card--telefoon .lpa-option-card__tag strong,
.lpa-option-card--mail .lpa-option-card__tag strong {
    margin-top: 1px;
    margin-bottom: 1px;
}

.lpa-option-cards--quotation-type .lpa-option-card__content strong {
    margin-top: 0px;
    margin-bottom: 0px;
}

.lpa-option-card__tag {
    display: inline-block;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #4BA630 !important;
    margin-bottom: 0px !important;
}

.lpa-option-card__benefits {
    list-style: none;
    padding: 0;
    margin: 12px 0 8px;
    padding-top: 14px;
    border-top: 1px solid #DADCDDC9;
}

.lpa-option-card__benefits li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    font-size: 15px;
    font-weight: 300;
    color: black;
}

.lpa-option-card__benefits li svg {
    flex-shrink: 0;
}

.lpa-option-card__benefit--muted {
    color: #9CA3AF;
}

.lpa-option-card__benefit--muted circle {
    fill: #DADCDD;
}

.lpa-option-card__benefit--muted rect {
    fill: #AFB3B4;
}

.lpa-option-card__hint {
    font-size: 13px !important;
    font-weight: 200 !important;
    margin-top: 16px;
    display: block;
}

@media (max-width: 640px) {
    .lpa-option-cards,
    .lpa-option-cards--wide {
        grid-template-columns: 1fr;
    }
}

/* ---------- Toggle Buttons (Step 2) ---------- */
.lpa-toggle-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.lpa-toggle-btn {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 9px 20px;
    border: 1px solid #728095;
    outline: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    background: transparent;
    font-size: 16px;
    line-height: 18px;
    transition: all .45s cubic-bezier(0.25, 1, 0.33, 1);
}

.lpa-toggle-btn strong,
.lpa-toggle-btn small,
.lpa-toggle-btn path {
    transition: all .45s cubic-bezier(0.25, 1, 0.33, 1);
}

.lpa-toggle-btn:hover,
.lpa-toggle-btn:hover strong,
.lpa-toggle-btn:hover small,
.lpa-toggle-buttons--small .lpa-toggle-btn:hover .lpa-toggle-btn__check, .lpa-toggle-btn:hover .lpa-toggle-btn__text{
    color: #4BA630 !important;
}

.lpa-toggle-btn:hover input[value="wandmontage"] + .lpa-toggle-btn__icon svg path {
    fill: #4BA630 !important;
}

.lpa-toggle-btn:hover input[value="paalmontage"] + .lpa-toggle-btn__icon svg path {
    stroke: #4BA630 !important;
}

.lpa-toggle-btn:hover {
    border-color: #4BA630;
    outline-color: #4BA630;
}

.lpa-toggle-btn.is-selected{
    border-color: #4BA630;
    outline-color: #4BA630;
    background: #A0CE4E1A;
}

.lpa-toggle-btn.is-selected .lpa-toggle-btn__text,
.lpa-toggle-btn.is-selected .lpa-toggle-btn__text * {
    color: #4BA630;
}

.lpa-toggle-btn__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.lpa-toggle-btn__icon svg {
    width: auto;
    height: 28px;
}

.lpa-toggle-btn__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.15px;
    color: #728095;
    line-height: 1em;
}

.lpa-toggle-btn__text strong {
    display: block;
}

body .lpa-toggle-btn__text strong {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.15px;
    color: #728095;
    line-height: 1em;
}

.lpa-toggle-btn__text small {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #728095;
    letter-spacing: -0.25px;
    line-height: 1em;
}

input[value="wandmontage"] + .lpa-toggle-btn__icon svg path {
    fill: #728095;
}

input[value="paalmontage"] + .lpa-toggle-btn__icon svg path {
    stroke: #728095;
}

.lpa-toggle-btn.is-selected input[value="wandmontage"] + .lpa-toggle-btn__icon svg path {
    fill: #4BA630;
}

.lpa-toggle-btn.is-selected input[value="paalmontage"] + .lpa-toggle-btn__icon svg path {
    stroke: #4BA630;
}

.lpa-toggle-btn input[value="paalmontage"] + .lpa-toggle-btn__icon svg {
    height: 32px;
}

body .lpa-wrap .lpa-step[data-step="2"] .lpa-field-group .lpa-toggle-btn {
    min-width: 230px;
    min-height: 53px;
    justify-content: center;
}

.lpa-toggle-btn__check {
    display: inline-flex;
    align-items: center;
    color: #728095;
}

.lpa-toggle-btn.is-selected .lpa-toggle-btn__check {
    color: #4BA630;
}

.lpa-toggle-buttons--small .lpa-toggle-btn {
    gap: 15px;
}

.lpa-toggle-buttons.lpa-toggle-buttons--small {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.15px;
    color: #728095;
    line-height: 1em;
    margin-top: 10px;
}

.lpa-toggle-buttons--small .lpa-toggle-btn.is-selected {
    color: #4BA630;
}

button[data-next="3"] {
    margin-top: 12px !important;
}

/* ---------- Conditional fields ---------- */
.lpa-conditional {
    display: none;
}

/* ---------- Form Fields ---------- */
.lpa-field-group {
    margin-bottom: 20px;
}

.lpa-conditional[data-show-when="wandmontage,paalmontage"] .lpa-field-group {
    margin-bottom: 24px;
}

.lpa-label {
    display: block;
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 700;
}

body .lpa-wrap .lpa-step[data-step="3"] .lpa-label {
    font-family: Inter;
    font-weight: 500 !important;
    color: #393939;
    font-size: 15px;
    line-height: 1em;
    margin-bottom: 7px;
}

body .lpa-wrap .lpa-step[data-step="3"] .lpa-fields-row:first-of-type .lpa-field-group--half {
    margin-bottom: 36px;
}

.lpa-input-wrap.is-filled .lpa-input[type="text"],
.lpa-input-wrap.is-filled .lpa-input[type="number"],
.lpa-input-wrap.is-filled .lpa-input[type="email"],
.lpa-input-wrap.is-filled .lpa-input[type="tel"] {
    border-color: #4AA630 !important;
}

body .lpa-wrap .lpa-step[data-step="2"] .lpa-field-group .lpa-label strong {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0px;
}

.lpa-sublabel {
    display: block;
    font-size: 15px;
    color: black;
    margin-bottom: 14px;
    font-weight: 200;
}

.lpa-required {
    color: var(--lpa-red);
}

.lpa-input[type="text"],
.lpa-input[type="number"],
.lpa-input[type="email"],
.lpa-input[type="tel"] {
    display: block;
    padding: 10px 14px !important;
    border: 1px solid #728095 !important;
    border-radius: 12px !important;
    transition: border-color var(--lpa-transition);
    background: transparent;
    color: #000000 !important;
    font-family: "Inter", sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 1em;
    letter-spacing: -0.35px !important;
    height: 44px;
}

body .lpa-wrap .lpa-step[data-step="3"] .lpa-section-title {
    margin-top: 6px;
    margin-bottom: 13px !important;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2em;
    letter-spacing: -0.8px;
    color: #000000;
}

.lpa-input-wrap {
    position: relative;
}

.lpa-input-wrap.is-filled .lpa-input {
    border-color: var(--lpa-green);
}

.lpa-fields-row.lpa-fields-row--address {
    display: flex;
}

.lpa-fields-row.lpa-fields-row--address .lpa-field-group {
    width: 100%;
}

.lpa-input-wrap.is-filled::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234AA630'%3E%3Cpath d='M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm4.03 8.03l-5 5c-.15.15-.34.22-.53.22s-.38-.07-.53-.22l-2-2a.754.754 0 010-1.06c.29-.29.77-.29 1.06 0l1.47 1.47 4.47-4.47c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.lpa-input-wrap.is-error .lpa-input {
    border-color: var(--lpa-red) !important;
}

.lpa-input-wrap.is-error::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23DC3232'%3E%3Cpath d='M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm3.54 12.46c.29.29.29.77 0 1.06-.15.15-.34.22-.53.22s-.38-.07-.53-.22L10 11.04 7.52 13.52c-.15.15-.34.22-.53.22s-.38-.07-.53-.22a.754.754 0 010-1.06L8.94 9.98 6.46 7.5a.754.754 0 010-1.06c.29-.29.77-.29 1.06 0L10 8.92l2.48-2.48c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06L11.06 9.98l2.48 2.48z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

.lpa-input-wrap.is-error.is-filled::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23DC3232'%3E%3Cpath d='M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm3.54 12.46c.29.29.29.77 0 1.06-.15.15-.34.22-.53.22s-.38-.07-.53-.22L10 11.04 7.52 13.52c-.15.15-.34.22-.53.22s-.38-.07-.53-.22a.754.754 0 010-1.06L8.94 9.98 6.46 7.5a.754.754 0 010-1.06c.29-.29.77-.29 1.06 0L10 8.92l2.48-2.48c.29-.29.77-.29 1.06 0 .29.29.29.77 0 1.06L11.06 9.98l2.48 2.48z'/%3E%3C/svg%3E");
}

/* Address error message */
.lpa-address-error {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 16px;
    padding: 10px 14px;
    background: #FEE2E2;
    border: 1px solid #FECACA;
    border-radius: var(--lpa-radius);
}

.lpa-address-error svg {
    flex-shrink: 0;
}

.lpa-address-error__text {
    font-size: 14px;
    color: #991B1B;
    font-weight: 400;
}

.lpa-input-unit {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lpa-input-unit .lpa-input {
    width: 72px;
    padding-right: 32px;
}

.lpa-input-unit__suffix {
    font-size: 16px;
    color: black;
    font-weight: 400;
    pointer-events: none;
    position: absolute;
    right: -18px;
}

input[type=date]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, select:focus, textarea:focus {
    box-shadow: unset !important;
}

/* Rows */
.lpa-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lpa-fields-row--address {
    grid-template-columns: 1fr 100px 100px;
}

.lpa-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 24px 0 12px;
}

/* Address lookup loader */
.lpa-address-loader {
    margin: 4px 0 16px;
}

.lpa-address-loader__line {
    height: 12px;
    width: 55%;
    border-radius: 6px;
    margin-bottom: 6px;
    background: linear-gradient(90deg, var(--lpa-gray-100) 25%, var(--lpa-gray-200) 50%, var(--lpa-gray-100) 75%);
    background-size: 200% 100%;
    animation: lpa-shimmer 1.5s infinite;
}

.lpa-address-loader__line--short {
    width: 35%;
}

/* Address result */
.lpa-address-result {
    margin-top: -8px;
    font-size: 14px;
    color: #171312;
}

.lpa-address-edit {
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 400;
    color: #7B8793;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: underline;
}

.lpa-address-edit svg {
    margin-top: -2px;
    width: 14px;
    height: 14px;
}

.lpa-wrap .lpa-step p.lpa-address-text {
    margin-bottom: 20px;
}

/* Error messages */
.lpa-field-error {
    display: block;
    color: var(--lpa-red);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* ---------- Buttons ---------- */
.lpa-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--lpa-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--lpa-transition), opacity var(--lpa-transition);
    text-decoration: none;
}

.lpa-wrap .lpa-btn {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 23px;
    padding: 18px 44px;
    background: #A0CE4E;
    align-self: flex-start;
}

.lpa-btn--primary {
    background: #A0CE4E;
    color: #fff;
}

.lpa-btn--primary:hover {
    background: #A0CE4E;
    opacity: 0.85;
}

.lpa-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.lpa-btn--secondary {
    background: var(--lpa-gray-100);
    color: var(--lpa-gray-700);
    border: 1px solid var(--lpa-gray-300);
}

.lpa-btn--secondary:hover {
    background: var(--lpa-gray-200);
}

.lpa-btn--back {
    display: inline-block;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: #8C8C8C;
    align-self: flex-start;
    margin-left: 12px;
    border-bottom: 2px solid #8C8C8C;
    margin-top: 20px;
    transition: 0.25s all;
}

.lpa-btn--back:hover {
    color: black;
    border-color: black;
}

.lpa-btn__arrow {
    display: inline-flex;
    align-items: center;
}

.lpa-btn__arrow svg {
    width: 8px;
    height: 14px;
}

.lpa-btn__arrow svg path {
    stroke-width: 3px;
}

.lpa-step-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.lpa-step-actions--photos {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 12px;
    align-items: center;
    justify-content: start;
}

.lpa-step-actions--photos .lpa-btn {
    width: auto;
}

.lpa-step-actions--photos .lpa-btn--back {
    grid-column: 1 / -1;
    justify-self: start;
    width: auto;
    max-width: max-content;
    display: inline-flex;
    text-decoration: none;
}

.lpa-step-actions--photos .lpa-btn.lpa-btn--secondary {
    background-color: #225400;
    color: white;
}

.lpa-step-actions--photos .lpa-btn.lpa-btn--secondary:hover {
    opacity: 0.85;
}

.lpa-step-actions--photos .lpa-btn.lpa-btn--primary {
    background-color: #A0CE4E;
    color: white;
}

.lpa-on-step-1-5 .lpa-usp-banner,
.lpa-on-step-2 .lpa-usp-banner {
    margin-top: 70px;
}

.lpa-on-step-3 .lpa-usp-banner,
.lpa-on-step-4 .lpa-usp-banner {
    margin-top: 50px;
}

/* ---------- Progress Bar (Battery) ---------- */
.lpa-progress {
    margin-bottom: 30px;
    width: 90%;
}

.lpa-progress__bar {
    position: relative;
    height: 38px;
    background: #F3F4F6;
    border-radius: 4px;
    overflow: visible;
    border: 3px solid #D9D9D9;
}

.lpa-progress__bar::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -7px;
    width: 7px;
    height: 17px;
    background: #D9D9D9;
}

.lpa-progress__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #225400 69.71%, #A0CE4E 100%);
    transition: width 0.6s ease;
    border-radius: 3px 0 0 3px;
}

.lpa-progress__labels {
    display: flex;
    justify-content: space-between;
    margin-top: -3px;
    width: calc(100% + 26px);
}

.lpa-progress__label {
    font-size: 13px;
    color: #D1D5DB;
    font-weight: 400;
    letter-spacing: -0.25px;
    transition: color var(--lpa-transition);
}

.lpa-progress__label.is-active {
    color: #225400;
}

.lpa-progress__label.is-current {
    color: #A0CE4E;
}

.lpa-progress__label::before {
    content: '●';
    display: block;
    text-align: center;
    font-size: 14px;
    margin-bottom: -9px;
}

/* ---------- Photo Upload (Step 4) ---------- */
.lpa-upload-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 68px 24px;
    background: #0000001A;
    border-radius: 40px;
    cursor: pointer;
    transition: background var(--lpa-transition);
}

.lpa-upload-dropzone__icon svg {
    width: 56px;
    height: 56px;
}

.lpa-upload-dropzone:hover,
.lpa-upload-dropzone.is-dragover {
    background: #00000029;
}

.lpa-upload-dropzone__icon {
    color: #00000080;
}

.lpa-wrap .lpa-step .lpa-upload-dropzone p {
    margin: 0;
    color: #000000;
    padding-bottom: 0px;
    font-weight: 500;
}

.lpa-upload-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.lpa-upload-preview__img-wrap {
    position: relative;
}

.lpa-upload-preview img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--lpa-radius);
    margin-bottom: 0px !important;
}

.lpa-upload-preview__remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}

.lpa-upload-preview__remove:hover {
    background: #DC3232;
}

.lpa-upload-preview__name {
    display: block;
    font-size: 11px;
    color: black;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 4px;
}

.lpa-photo-info {
    margin-bottom: 24px;
}

.lpa-photo-info ul {
    margin: 0px 0px 20px 0px;
    padding-left: 16px;
}

.lpa-wrap[data-step="3"] .lpa-progress {
    margin-bottom: 24px !important;
}

/* ---------- Sidebar ---------- */
.lpa-sidebar {
    position: sticky;
    top: 24px;
}

.lpa-product-card {
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid #ccd5df;
    border-radius: 20px;
    padding: 32px;
}

.lpa-product-card__badge {
    display: flex;
    align-items: center;
    color: #a0ce4e;
    padding: 0 0 0 2px;
    margin: 0px 0 10px 0;
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.35px;
}

.lpa-product-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a0ce4e;
    margin-right: 5px;
}

.lpa-product-card__subtitle {
    font-size: 16px;
    font-weight: 400;
    margin: 4px 0 12px;
    color: black;
    padding-bottom: 0px;
    letter-spacing: -0.35px;
}

.lpa-product-card__thumb {
    display: flex;
    align-items: center;
    flex-direction: row;
    border-radius: 10px;
    border: 1px solid var(--primairy-70, #A0CE4E);
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 14px;
}

.lpa-product-card__thumb img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0px !important;
}

.lpa-product-card__title {
    font-size: 16px !important;
    font-family: "Inter", sans-serif;
    line-height: 20px !important;
    font-weight: 400 !important;
    margin-bottom: 0px !important;
    letter-spacing: -1.75px;
}

.lpa-product-card__price {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #9898984F;
    letter-spacing: -0.35px;
}

.lpa-product-card__options {
    font-size: 16px;
    color: black;
    margin-top: 10px;
}

.lpa-product-card__options strong {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.75px;
    margin-bottom: 3px;
    display: block;
}

.lpa-product-card__option-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 5px 0;
}

.lpa-product-card__option-row span {
    font-weight: 300;
}

.lpa-product-card__option-row svg path {
    fill: #4BA630;
}

.lpa-product-card__option-row svg {
    flex-shrink: 0;
}

/* Product Column overrides */
.lpa-wrap blockquote::before {
    content: unset;
}

.lpa-wrap .lpa-review-card__text {
    padding-left: 0px;
}

/* Review card */
.lpa-review-card {
    border: 1px solid #CCD5DF;
    border-radius: var(--lpa-radius);
    padding: 28px;
    background: #fff;
}

.lpa-review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.lpa-review-card__name {
    font-size: 16px;
    font-weight: 400;
    color: black;
    letter-spacing: -0.35px;
    font-family: "Outfit", sans-serif;
}

.lpa-review-card__name strong {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.lpa-review-card__stars {
    display: flex;
    gap: 2px;
}

.lpa-review-card__stars svg {
    width: 16px;
    height: 16px;
}

.lpa-review-card__location {
    font-size: 16px;
    color: #728095;
    font-weight: 400;
    display: block;
    margin-bottom: 12px;
    letter-spacing: -0.35px;
}

.lpa-review-card__text {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
    letter-spacing: 0px;
}

/* ---------- USP Banner ---------- */
.lpa-usp-banner {
    margin-top: 100px;
    border-radius: 20px;
    border: 1px solid #A0CE4E;
    background: #F7FAFC;
    width: 100%;
    padding: 20px;
    align-items: flex-start;
    gap: 6px;
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

.lpa-usp {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.lpa-usp__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.lpa-usp svg path {
    fill: #4BA630;
}

.lpa-usp strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: black;
    font-size: 16px;
}

.lpa-usp span {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: black;
    font-size: 16px;
    margin-top: 0px;
}

@media (max-width: 1024px){
    .lpa-progress, .lpa-progress__labels{
    	width: 100%;
    }
    .lpa-on-step-3 .lpa-progress__fill{
    	width: calc(50% - 19px) !important;
    }
    .lpa-on-step-4 .lpa-progress__fill{
    	width: calc(100% - 42px) !important;
    }
    .lpa-product-card{
    	margin-top: 40px;
    	width: 100%;
        margin-bottom: 0px;
    }
}

@media (max-width: 768px) {
    .lpa-fields-row {
        grid-template-columns: 1fr;
    }
    .lpa-fields-row--address {
        grid-template-columns: 1fr 1fr;
    }
    .lpa-field-group--postcode {
        grid-column: 1 / -1;
    }
    .lpa-usp-banner {
        grid-template-columns: 1fr;
    }
    body .lpa-wrap .lpa-step[data-step="2"] .lpa-field-group .lpa-toggle-btn{
        min-width: 100%;
    }
    body .lpa-wrap .lpa-step[data-step="2"] .lpa-field-group .lpa-toggle-buttons.lpa-toggle-buttons--small .lpa-toggle-btn{
        min-width: unset !important;
        width: 50%;
    }
    .lpa-toggle-buttons.lpa-toggle-buttons--small{
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .lpa-field-group, body .lpa-wrap .lpa-step[data-step="3"] .lpa-fields-row:first-of-type .lpa-field-group--half{
    	margin-bottom: 24px !important;
    }
    .lpa-fields-row{
        margin-bottom: 0px;
    	gap: 0px;
    }
    .lpa-on-step-1.lpa-wrap .lpa-btn, .lpa-on-step-1-5.lpa-wrap .lpa-btn, .lpa-on-step-2.lpa-wrap .lpa-btn, .lpa-on-step-3.lpa-wrap .lpa-btn{
        width: 100%;
        justify-content: center;
    }
    .lpa-wrap .lpa-btn {
        padding: 22px 44px;
    }
	.lpa-on-step-1 .lpa-usp-banner, .lpa-on-step-1-5 .lpa-usp-banner, .lpa-on-step-2 .lpa-usp-banner, .lpa-on-step-3 .lpa-usp-banner, .lpa-on-step-4 .lpa-usp-banner{
    	margin-top: 40px;
        margin-bottom: 40px;
    }
    .lpa-fields-row.lpa-fields-row--address {
        flex-direction: column;
    }
    .lpa-address-error{
    	margin-top: 0px;
    }
    .lpa-address-error svg{
    	display: none;
    }
    .lpa-step-actions--photos{
    	display: flex;
    	flex-direction: column;
        gap: 20px;
    }
    .lpa-step-actions--photos .lpa-btn{
    	width: 100%;
    	justify-content: center;
    }
    .lpa-step-actions--photos .lpa-btn--back{
        max-width: 100%;
        display: flex;
        text-decoration: none;
        justify-content: center;
        margin-top: 0px;
    }
    .lpa-wrap .lpa-step h2,
    .lpa-wrap .lpa-step h2 strong {
        font-size: 32px;
    }
    .lpa-on-step-1.lpa-wrap .lpa-option-cards{
    	display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .lpa-on-step-1-5.lpa-wrap .lpa-option-cards{
        gap: 16px;
    }
    .lpa-option-card {
        gap: 12px;
        padding: 24px 20px;
    }
    .lpa-wrap .lpa-option-card__icon {
        width: 66px;
        height: 66px;
    }
    .lpa-wrap .lpa-option-card__content strong{
    	font-size: 19px;
    }
    .lpa-on-step-1.lpa-wrap .lpa-step p, .lpa-on-step-1-5.lpa-wrap .lpa-step p{
    	margin-bottom: 10px;
    }
    .lpa-wrap .lpa-option-card__content span {
        font-size: 16px;
    }
    .lpa-wrap .lpa-option-cards {
        margin-bottom: 36px;
    }
}

/* ---------- Skeleton Loader ---------- */
.lpa-skeleton {
    padding: 24px 0;
}

.lpa-skeleton__bar,
.lpa-skeleton__line,
.lpa-skeleton__block {
    background: linear-gradient(90deg, var(--lpa-gray-100) 25%, var(--lpa-gray-200) 50%, var(--lpa-gray-100) 75%);
    background-size: 200% 100%;
    animation: lpa-shimmer 1.5s infinite;
    border-radius: var(--lpa-radius);
    margin-bottom: 16px;
}

.lpa-skeleton__bar {
    height: 28px;
    width: 100%;
}

.lpa-skeleton__line--wide {
    height: 20px;
    width: 70%;
}

.lpa-skeleton__line--medium {
    height: 16px;
    width: 50%;
}

.lpa-skeleton__line--narrow {
    height: 40px;
    width: 160px;
}

.lpa-skeleton__block {
    height: 80px;
    width: 100%;
}

@keyframes lpa-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---------- Loading state ---------- */
.lpa-wrap.is-loading {
    pointer-events: none;
    opacity: 0.8;
}