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

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

.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;
}

.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;
}

.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;
}


/*===== 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%;
}

.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;
}






.inquiry-form{
    display: flex;
    flex-direction: column;
    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;
    justify-items: center;
    padding: 25px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease;
    box-sizing: border-box;
    overflow: hidden;
}
.inquiry-submit {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}


.remark{
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    width: 50%;
    justify-self: center;
    height: clamp(0.5rem, 5vw, 1rem);
    color: #FFF;
    font-family: Inter;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 20;
    margin-top: auto;
    grid-column: 1 / -1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 20px;
}
#remarkInput {
    color: #FFFFFF;
    padding-left: 10px;
}
#remarkInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}
.continue {
    flex-shrink: 0;
    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;
    height: clamp(2.2rem, 5vw, 3rem);
    color: #FFF;
    font-family: Inter;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 500;
    margin-top: auto;
    grid-column: 1 / -1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


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

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


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

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


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


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.blueprint-container {
    flex-grow: 1;
    min-height: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 10px 0;
    object-fit: contain;
}

.blueprint-preview-panel,
#blueprint-preview-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#blueprint-preview-container svg,
#blueprint-preview-container img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
    }

    .custom-carport-maker-main-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;

        width: 100vw;
        max-width: 100vw;

        overflow: hidden;
        height: calc(100vh - 40px);

    }

    .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;
        align-items: flex-start;
        padding-top: 12px;
    }

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

    .stage-picker-categories::-webkit-scrollbar {
        display: none;
    }

    .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 {
        width: 100vw;
        max-width: 100vw;
        padding: 8px;
        box-sizing: border-box;
        overflow: hidden;
        align-self: center;
        margin-bottom: auto;
        overflow-y: auto;
        margin-top: 10%;

    }

    .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);
    }

    .carport-measurement-form, .shed-addon-form, .roof-addon-form  {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
        padding: clamp(12px, 4vw, 20px);
    }

    .carport-measurement-box, .carport-shed-addon-box,.carport-roof-addon-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);
    }
}





