#admin-carport-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    width: 100%;
    margin-left: 0;
}

.custom-carport-maker-main-grid {
    display: grid;
    grid-template-columns: 20% 80%;
    width: 100%;
    height: 100%;
}

.stage-picker {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease;
}

.stage-picker-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 60%;
}

.maker-categories {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.maker-categories:hover {
    transform: translateY(-3px);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.stage-display {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    width: 100%;
    margin-left: 0;
    animation: fadeIn 1s ease;
}


/*===== ROOF BOXES =====*/

.roof-picker-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    width: 80%;
}

.roof-boxes {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 20px;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    animation: fadeIn 1s ease;

}

.roof-boxes:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: solid #2783e1;
}


.flat-roof-svg, .tilted-roof-svg {
    height: 150px;
    width: 150px;
}

.svg-color {
    fill: white;
}

/*===== SHED BOXES =====*/

.shed-picker-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    width: 80%;
}

.shed-boxes {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 20px;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    animation: fadeIn 1s ease;
}

.no-shed-text-button {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 20px;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-shed-text-button:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: solid #2783e1;
}

#no-shed-text-description {
    color: white;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    text-align: center;
    font-size: clamp(0.8rem, 2vw, 1.35625rem);
}

.shed-boxes:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: solid #2783e1;
}


.half-shed-svg, .full-shed-svg {
    height: 150px;
    width: 150px;
}

.svg-color {
    fill: white;
}

.chosen-shed-box {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: solid #2783e1;
}

.chosen-roof-box {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: solid #2783e1;
}


/*===== CARPORT MEASUREMENTS INPUTS =====*/
.carport-measurement-box, .carport-shed-addon-box, .carport-roof-addon-box {
    border-radius: 8px;
    border: 1.5px solid #c5d5e8;
    background: #f4f8fd;
    width: 25vw;
    height: clamp(2rem, 4vw, 2.5rem);
    padding: 0 12px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.carport-measurement-box:focus {
    border-color: #5fa8f3;
    box-shadow: 0 0 0 3px rgba(1, 61, 122, 0.12);
    background: white;
}

.carport-measurement-input-description {
    color: white;
    font-family: Inter;
    font-weight: 500;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    text-align: left;
    margin-bottom: 5px;
    width: 100%;
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px 12px;
    height: 70vh;
    width: 70%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    justify-items: center;
    padding: 25px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease;
}

.carport-measurement-form, .shed-addon-form, .roof-addon-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
    height: 60vh;
    width: 70%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 25px;
    border-radius: 15px;
    align-items: center;
    animation: fadeIn 1s ease;
}

.continue {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;

    width: 30%;
    justify-self: center;

    min-height: 3.5rem;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFF;
    font-family: Inter;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 500;

    margin-top: 12px;
    grid-column: 1 / -1;
}


.continue:hover {
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(1, 61, 122, 0.4);
    transform: translateY(-3px);
}


/*===== CARPORT MATERIALS INPUTS =====*/


.chosen-category {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.inquiry-submit {
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    width: 85%;
    height: 90%;
    text-align: left;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    scroll-behavior: smooth;
    align-items: center;
}


#discountInput {
    border-radius: 8px;
    border: 1.5px solid #c5d5e8;
    background: #f4f8fd;
    width: 20%;
    height: clamp(2.5rem, 6vw, 2.5rem);
    padding: 0 12px;
}


@media (max-width: 768px) {


    html, body {
        overflow-x: hidden;
        max-width: 100%;
        height: 100%;
    }


    .custom-carport-maker-main-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr; /* top bar takes what it needs, rest fills remaining */
        width: 100vw;
        max-width: 100vw;
        height: 100vh; /* full screen height */
        overflow: hidden;
    }

    /* ---- Stage picker → 2-column grid ---- */
    .stage-picker {
        height: auto;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px;
        box-sizing: border-box;
        flex-shrink: 0; /* never shrink, always stays same size */
    }


    .stage-picker-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(6px, 2vw, 10px);
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .maker-categories {
        font-size: clamp(0.75rem, 3.5vw, 1rem);
        padding: clamp(8px, 2.5vw, 14px);
        white-space: normal;
        text-align: center;
        box-sizing: border-box;
        width: 100%;
    }


    /* ---- Stage display ---- */
    .stage-display {
        width: 100vw;
        max-width: 100vw;
        padding: 8px;
        box-sizing: border-box;
        overflow-y: auto;
        overflow-x: hidden;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 10%;
    }

    /* ---- Customer input form ---- */
    .customer-receive-form {
        width: calc(100vw - 16px);
        max-width: calc(100vw - 16px);
        height: auto;
        min-height: 120px;
        padding: clamp(12px, 4vw, 20px);
        box-sizing: border-box;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

    .customer-receive-form .field-group {
        width: 100%;
        box-sizing: border-box;
    }

    .customer-receive-input-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: clamp(2rem, 8vw, 2.8rem);
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .customer-receive-input-description {
        font-size: clamp(0.7rem, 2.5vw, 0.9rem);
    }

    /* ---- Roof & shed boxes ---- */
    .roof-picker-boxes,
    .shed-picker-boxes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: calc(100vw - 16px);
        max-width: calc(100vw - 16px);
        gap: 8px;
        padding: 0;
        box-sizing: border-box;
    }

    .roof-boxes,
    .shed-boxes {
        font-size: clamp(0.75rem, 3vw, 1.1rem);
        padding: 8px;
        aspect-ratio: 1 / 1;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .flat-roof-svg,
    .tilted-roof-svg,
    .half-shed-svg,
    .full-shed-svg {
        height: clamp(50px, 15vw, 90px);
        width: clamp(50px, 15vw, 90px);
    }

    .no-shed-text-button {
        padding: clamp(10px, 3vw, 18px);
        box-sizing: border-box;
    }

    #no-shed-text-description {
        font-size: clamp(0.75rem, 3vw, 1rem);
    }

    /* ---- Measurements form ---- */
    .carport-measurement-form {
        grid-template-columns: 1fr;
        width: calc(100vw - 16px);
        max-width: calc(100vw - 16px);
        height: auto;
        box-sizing: border-box;
        padding: clamp(12px, 4vw, 20px);
    }

    .carport-measurement-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: clamp(2rem, 8vw, 2.8rem);
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .carport-measurement-input-description {
        font-size: clamp(0.7rem, 2.5vw, 0.9rem);
    }

    .continue {
        width: 100%;
        font-size: clamp(0.85rem, 3.5vw, 1.2rem);
        height: clamp(2.2rem, 9vw, 3rem);
    }


   .inquiry-submit p{
       margin-left: 50px;
   }

}

/*=====   ACTIVE CLASSES =====*/
.hidden {
    display: none;
}
