:root{
	--color-error: 150, 0, 0;
	--color-pdk: 247,179,50;
    --color-dark-gray: 90,90,90;
    --color-light-gray: 228, 228, 231;
    --color-title: 24, 24, 27;
    --color-destructive: 220, 38, 38;

    --color-input: 229, 231, 235;               /* #e5e7eb (border) */
    --color-accent-bg: 243, 244, 246;           /* #f3f4f6 (hover bg) */
    --color-foreground: 56, 64, 86;             /* #384056 (normal text) */
    --color-accent-foreground: 17, 24, 39;      /* #111827 (hover text) */
    



	--corner: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
    
    --primary: 35.94 95.9% 61.76%;
    
	--border: 2px solid rgb(var(--color-pdk));
	--border-radius: 5px;

	--text-shadow: 
        1px 1px 0px black, 
        -1px 1px 0px black, 
        1px -1px 0px black, 
        -1px -1px 0px black;

    --notice-title-color: #858E98;
}
html, body {
    font-family: 'Lato', sans-serif;
}
input, button, select, textarea{
    font-family: inherit;
}
input::placeholder{
    font-family: inherit;
}

.primary-button, .secondary-button{
    font-family: 'Lato', sans-serif;
    display: block;
    width: fit-content;
    margin-left: auto;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    min-width: 20px;
    text-align: center;

}
.primary-button{
    color: #FFFFFF;
    background-color: rgb(var(--color-pdk));
}
.primary-button.inactive{
    background-color: rgb(var(--color-pdk),0.7);
}

.secondary-button{
    color: rgb(var(--color-title));
    background-color: #FFFFFF;
    border: 1px solid rgb(var(--color-light-gray));
}

.extras-buttons-wrapper{
    display: flex;
    flex-direction: row;
    gap:10px;
    margin-left:auto;
}
.extras-buttons-wrapper > .primary-button, .extras-buttons-wrapper > .secondary-button{
    flex: 0 0 auto;
    width: auto;
}









.notice-overlay{
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    width: 100dvw;
    z-index: 10000;
}
.notice-box{
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    display: flex;
    gap:15px;
    max-width: 400px;
    flex-direction: column;
}
.notice-logo{
    background-image: url("./pdk.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 53px;
}

.notice-title{
    color: var(--notice-title-color);
    border-bottom: 1px solid lightgray;
    width: 100%;
    padding: 8px 0px 16px 0px;
    font-size: 30px;
    font-weight: bold;
}





.notice-disclaimer-wrapper{
    border: 1px solid lightgray;
    border-radius: 10px;
    max-width: 450px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap:16px;
}
.notice-disclaimer-title{
    color: rgb(var(--color-pdk));
    font-size: 24px;
    font-weight: bold;
}
.notice-disclaimer-message{
    color: #71717A;
    font-family: 'Lato', regular !important;
    font-size: 14px;
}
.notice-buttons-wrapper{
    display: flex;
    flex-direction: column;
    gap:12px;
    width: 100%;
    justify-content: center;
}

.notice-btn{
    font-size: 14px;
    border-radius: 10px;
    color: black;
    cursor: pointer;
    display: flex;
    box-sizing: border-box;
    width: 100%;
    justify-content: center;
    text-align: center;
    transition: all 0.2s ease-in-out;
    padding: 10px 15px;
    font-family: 'Lato', sans-serif;
}
.notice-btn.accept{
    color: #FFFFFF;
    background-color: rgb(var(--color-pdk));
}
.notice-btn.decline{
    color: #18181B;
    font-weight: 600;
    border: var(--border);
    background-color: white;
    border: 1px solid lightgray;
}
.notice-btn:hover {

}















#body{
    margin:0;
    padding:0;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    gap:16px;
    box-sizing: border-box;
    /*display: grid;
    grid-template-columns: 1fr 1fr;*/
}

#mainWrapper{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
    box-sizing: border-box; 
    
    
    height: 100%;
    min-height: 0;

    margin-bottom: 24px;
    transition: 0.15s all ease-in-out;

    overflow: hidden;
    position: relative;
}

.main-wrapper-top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    flex: 0 0 auto;
    min-height: 350px;
    max-height: 350px;

    box-sizing: border-box;
    transition: 0.35s all ease-in-out;
}

.main-wrapper-bot{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    max-height: 100%;

    box-sizing: border-box;
    transition: 0.35s all ease-in-out;
}
#overview{
    flex: 1 1 auto;
    min-height: 0;
    flex-grow: 1;
}



.finalize-extended{
    flex: 1 1 auto !important;  /* make sure it can grow */
    height: auto !important;    /* don’t lock it */
    overflow: hidden !important;
}

/* apply this to .main-wrapper-top when finalized */
.finalize-hidden{
    max-height: 0 !important;
    min-height: 0 !important;    /* override the 348px */
    opacity: 0 !important;
    overflow: hidden !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
}






.configurator-header-wrapper{
    border-bottom: 1px solid lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
}
.configurator-header-content{
    display: flex;
    align-items: center;
    max-height: 80px;
}
.configurator-header-logo{
    /* this needs to be aligned to the right side of the header-content */
    height: 120px;
    margin-left: auto;
    object-fit: contain;    /* if it's an <img> */
    flex: 0 0 auto;
}
.header-title{
    color: rgb(var(--color-dark-gray));
    font-size: 2rem;
    font-weight: bold;
    padding-left: 10px;
    border-left: 1px solid lightgray;
}


.preview-wrapper{
    background-color: #FFFFFF;
    border:1px solid rgb(var(--color-light-gray));
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;

    transition: 0.15s all ease-in-out;
    --bg: none;
    background-image: var(--bg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

}










.configuration-outter-wrapper{
    background-color: white;
    width: 100%;
    border: 1px solid rgb(var(--color-light-gray));
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 0.8rem;

    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}
.configuration-outter-wrapper > .skuBox-buttons-wrapper{
    padding: 10px;
}
.orderform-wrapper{
    /*background-color: white;*/
    width: 100%;
    /*border: 1px solid lightgray;*/
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    padding: 0;
    position: relative;
}
.orderform-wrapper.no-locks{
    height: 100%;
    border: 1px dashed lightgray;
    padding: 16px;
    background-color: white;
    border-radius: 10px;
}
.orderform-wrapper > #no-locks{
    text-align: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.orderform-wrapper > #no-locks.hidden{
    display: none;
}

#mainWrapper.preload{
    display: none;
}














.skuBoxWrapper{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 16px;
}

.skuBoxWrapper.finished{
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid lightgray;
    margin: 0;
    border: 1px solid rgb(var(--color-light-gray));
    border-radius: 8px;
}
.skuBoxWrapper.finished > *{
    font-size: 16px;
}
.skuBox{
    font-size: 16px;
    color: rgb(var(--color-title));
    align-items: center;
    font-weight: bold;
}
.sub-sku-wrapper{
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap:12px;
    flex:1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-sku-popout-wrapper{
    position: fixed;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
    border:1px solid black;
    padding: 5px;
    border-radius: 10px;
    border-color: rgb(var(--color-light-gray));
    background-color: white;
    visibility: none;
}
.copy-sku-popout-wrapper.active{
    visibility: visible;
}
.copy-sku-option{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:5px;
    border-radius: 10px;
    cursor: pointer;
    padding: 3px 10px 3px 0px;
}
.copy-sku-option:hover{
    background-color: rgb(var(--color-light-gray));
}













.skuBox-buttons-wrapper{
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    /*margin: 10px;*/
}
.skuBox-buttons-wrapper > span{
    border-left: 1px solid rgb(var(--color-light-gray));
    align-self: stretch;
}
.skuBox-quantity-wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
}


















.config-buttons-inner-wrapper{
    display: flex;
    flex-direction: row;
    width: auto;
    max-width: 100%;
    min-width: 0px;
    transition: 0.15s all ease-in-out;
    align-items: center;
}
.config-buttons-inner-wrapper.active{
    gap:10px;
}
.config-button {
    width:0;
    min-width: 0;
    max-width: 30px;
    height:30px;
    visibility: hidden;
    cursor: not-allowed;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.15s all ease-in-out;
    outline: none;
    box-shadow: none;
    opacity: 0;
    border-radius: 10px;
}
.config-button:hover{
    background-color: rgb(var(--color-light-gray));
}
.config-button.clicked{
    background-color: rgb(var(--color-light-gray));
}
.config-button.active{
    visibility: visible;
    width: 30px;
    max-width: 30px;
    display: inline-block;
    opacity: 1;
    cursor: pointer;
}
.config-button.trash{
    background-image: url("./delete.svg");
}
.config-button.download{
    background-image: url("./download.svg");
}
.config-button.copy{
    background-image: url("./copy.svg");
}
.config-button.view{
    width: 20px;
    height: 20px;
    background-image: url("./view.svg");
}
.config-button.r-o-quantity{
    font-size: 12px;
    padding: 2px 8px;
    align-content: center;
    text-align: end;
    max-width: 40px;
    background-color: rgb(var(--color-light-gray));
    border-radius: 10px;
}



.popoutBtn{
    cursor: pointer;
    background-image: url("./popout.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 18px;
    border-radius: 5px;
    transition: 0.15s all ease-in-out;
}


.quantity{
    width:60px;
    height: 40px;
    border: 1px solid rgb(var(--color-light-gray));
    border-radius: 10px;
    color: var(--color-darker-gray);
    text-align: end;
    font-size: 1.0rem;
    /*font-family: var(--text-font-baloo);*/
    opacity: 0.15;
    cursor: not-allowed;
    padding: 0 10px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;          /* THIS is the key */
    margin: 0;
}
.quantity.active{
    opacity: 1;
    cursor: auto;
}

.quantity-updown-wrapper{
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.quantity-up-btn, .quantity-down-btn{
    cursor: not-allowed;
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 18px;
    border-radius: 5px;
    transition: 0.15s all ease-in-out;
    opacity: 0.15;

}
.quantity-up-btn.active, .quantity-down-btn.active{
    opacity: 1;
    cursor: pointer;
}
.quantity-up-btn{
    background-image: url("./up.svg");
}
.quantity-down-btn{
    background-image: url("./down.svg");
}






.reselectBtnWrapper {
    padding: 0 !important;
    margin: 0 !important;
}
.reselectBtnImg{
    padding: 0 !important;
    margin: 0 !important;
    width: 14px;
    height: 14px;
    cursor: pointer;
    display: none;
    vertical-align: middle;
    background-image: url(reselect.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.15s all ease-in-out;
    outline: none;
    box-shadow: none
}
.reselectBtnImg.active{
    display: inline-block;
}
.skuPart.active{
    font-weight: bold;
    background-color: rgb(var(--color-pdk));
    color:white;
    border-radius: 3px;
    padding:5px 0px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.selectionsBox{
    transition: 0.25s all ease-in-out;
    
    /*this should scroll*/
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: fill-available;
    max-height: 100%;
    overflow-y: auto;
}
.selectionsBox.hidden{
    max-height: 0px;
}
#selectionsBox :last-child{
    border-bottom: 0px;
}

.selectionRow{
    font-size: 0.75rem;
    display: grid;
    grid-template-columns: 100px 80px auto 20px;
    border-bottom: 1px solid rgb(var(--color-light-gray));
    /*transition: 0.1s all ease-in-out;*/
    padding: 10px;
    margin-left: 15px;
    margin-right: 15px;
    align-items: center;
}
.selectionRow > span{
    display: flex;
    flex-direction: column;
    gap:10px;

}
.selectionRow.headers{
    font-size: 12px;
    font-weight: bold;
    color: rgb(rgb(var(--color-title)));
}
.selectionRow.placholder{

}
.selectionRow:hover:not(.headers, .solo-option, .placholder){
    background-color: rgba(var(--color-light-gray), 0.5);
}

#main, #reselectWrapper {
    display: flex;
    flex-direction: column;
}
#main.hidden{
    padding: 0 !important;
    overflow: hidden !important;
    max-height: 0 !important;
}

.program-wrappers{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap:24px;
    border:1px solid rgb(var(--color-light-gray));
    border-radius: 12px;

    background-color: #FAFAFA;
    transition: 0.5s all ease-in-out;
    opacity: 1;
    min-height: 0;
}




.program-title {
    flex: 0 0 auto;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: rgb(var(--color-title));
}


.optionBtn-outter-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:5px;
    width: 400px;
}

.optionBtn-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 1px solid rgb(var(--color-light-gray));
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.optionBtn {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    background-color: #FFFFFF;
    color: rgb(var(--color-title));
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    width: 100%;
    text-align: center;
    word-break: break-word; /* Handles long labels with quotes */
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari, Chrome, Edge, Opera */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard property */
}


.optionBtn:hover {
    background-color: rgba(var(--color-light-gray), 0.7);
}


.optionBtn-imagePreview{
    border-left: 1px solid rgb(var(--color-light-gray));
    display: none;
    background-color: #FFFFFF;
    background-image: url("./view.svg");
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    width: 40px;
    height: 100%;
    margin-left: auto;
    cursor: pointer;
}
.optionBtn-imagePreview.active{
    display: inline-block;
}

.image-preview-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-preview-inner-box{
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border-right: 1px solid rgb(119, 119, 119);
    border-bottom: 1px solid rgb(119, 119, 119);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;

}
.image-preview-title-wrapper{
    display: flex;
    margin-bottom: 10px;
}

.image-preview-close-btn{
    margin-left:auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    cursor: pointer;

}
.image-preview-img{
    max-width: 80vw;
    max-height: 80vh;
}



/* Selected SKU summary */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 5px 0;
    font-size: 1em;
    border-bottom: 1px solid #ccc;
}


.inputQuantity{
    border: var(--border);
    border-radius: var(--border-radius);
    align-self: center;
    height: 45px;
    width: 150px;
    justify-items: center;
    font-size: 18px;
}







.confirmBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Translucent background */
    z-index: 9999; /* Ensure it's above all other elements */
    display: flex;
    justify-content: center;
    align-items: center;
}
.confirmInnerBox {
    display: flex;
    flex-direction: column;
    gap:10px;
    align-items: flex-start;
    background-color: white;
    width: 80%; /* Default width for larger screens */
    max-width: 400px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: bold;
}
.confirm-title {
    font-size: 20px;
    font-weight: 600;
    color: rgb(var(--color-title));
    text-align: left;
}
.confirm-disclaimer {
    font-size: 14px;
    font-family: "Lato", regular !important;
    font-weight: 400;
    color: #71717A;
    margin-bottom: 15px;
    text-align: left;
}
.confirm-options{
    display: flex;
    flex-direction: row;
    gap:10px;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}
.confirmButton {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin: 5px;
}
.confirmButton:hover {
    opacity: 0.85;
}
.btn-R{
    background-color: rgba(var(--color-destructive),0.10);
    border: 1px solid rgba(var(--color-destructive),0.30);
    color: rgb(var(--color-destructive));
    font-weight: 600;
}
.btn-R:hover{
    background-color: rgba(var(--color-destructive),0.2);
    border-color: rgba(var(--color-destructive),0.40);
}
.btn-O {
    background-color: rgb(255, 255, 255);
    color: rgb(var(--color-title));
    border: 1px solid rgb(var(--color-input));
}
.btn-O:hover {
    background-color: rgba(var(--color-light-gray),0.7);
}





.form-header-wrapper{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: 100%;
}

.form-options-wrapper{
    display: flex;
    flex-direction: row;
    gap: 10px;
    display: none;
}

.form-options-wrapper > span{
    width:1px;
    height: 100%;
    align-self: center;
    border-left: 1px solid rgb(var(--color-light-gray));
}
.form-counter{
    background-color: #FFFFFF;
    width: 30px;
    /*need a light-gray box shadow*/
    box-shadow: 0 0 5px rgb(var(--color-dark-gray));
    border-radius: 5px;

    font-size: 0.8rem;
    text-align: center;
    align-content: center;
}
.form-expander{
    cursor: pointer;
    background-image: url("./expander.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 20px;
    height: 100%;
    border-radius: 5px;
    transition: 0.15s all ease-in-out;
    box-shadow: 0 0 5px rgb(var(--color-dark-gray));
}
.form-expander.expanded{
    transform: rotate(180deg);
}



.completed-lock-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(var(--color-light-gray), 0.7);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.completed-lock-overview{
    position: relative;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    min-width: 500px;

    display: flex;
    flex-direction: column;
    gap: 15px;


}
.completed-lock-overview > .program-title{
    align-self: flex-start;
}
.completed-lock-close-btn{
    position: absolute;
    top: 15;
    right: 15;
    font-size: 1.5rem;
    color: rgb(var(--color-dark-gray));
    cursor: pointer;
}
.completed-lock-sku{
    font-size: 16px;
    font-weight: 600;

}
.completed-lock-details-wrapper{
    display: flex;
    flex-direction: column;
}
.completed-lock-details-row{
    display: grid;
    grid-template-columns: 1fr 1fr 4fr;
    padding: 5px 0px;
    font-size: 12px;
    align-items: center;
    justify-items: start;
    border-top: 1px solid rgb(var(--color-light-gray));
    color: rgb(var(--color-dark-gray));
}
.completed-lock-details-row.headers{
    font-weight: 600;
    color: rgb(var(--color-title));
    border-top: 1px solid rgb(var(--color-title));
}




.order-form-finished-lock-wrapper{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding:16px 16px;
    border: 1px solid rgb(var(--color-light-gray));
    border-radius: 10px;
    background-color: white;
    justify-content: center;
    align-items: center;
    
}
.order-form-finished-lock-sku{
    font-size: 16px;
    color: rgb(var(--color-title));
    align-items: center;
    font-weight: bold;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.order-form-finished-lock-button-wrapper{   
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-form-finished-lock-multisku-wrapper{
    display: flex;
    flex-direction: column;
    gap:12px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.sku-content-wrapper{
    font-weight: normal;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.sku-title{
    font-weight: bold;
}













.toast-wrapper{
    z-index: 10001;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #09090b;
    color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 80%;
    opacity: 0;
}
.toast-wrapper.active{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast-wrapper.hide{
    transform: translateX(-50%) translateY(-20px);
}

.toast-img{
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-size: contain;
}
.toast-img.check{
    background-image: url("./check.svg");
}
.toast-img.error{
    background-image: url("./error.svg");
}
.toast-ele{
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}




/*
.extras-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
}
.extras-close-btn{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(var(--color-dark-gray));
    cursor: pointer;
    z-index: 10000;
}
.extras-wrapper{
    position: relative;
    background-color: white;
    width: 350px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: start;
    align-items: start;
}


.extras-name-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap:10px;
}
.extras-title-required{
    font-weight: 600;
    font-size: 12px;
    color: rgb(var(--color-error));
    margin-left: 8px;
}
.extra-single-name-wrapper{
    display: flex;
    flex-direction: column;
    gap:5px;
}

.extras-input{
    width: 100%;
    border-radius: 8px;
    height: 30px;
    border: 1px solid rgb(var(--color-light-gray));
    padding: 5px 10px;
}
.extras-description{
    font-size: 12px;
    color: rgba(var(--color-title),0.7);
}
.extras-hubs-wrapper{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    border: 1px solid rgb(var(--color-light-gray));
    border-radius: 8px;
    box-sizing: border-box;
    padding: 10px;
}
.extras-title{
    font-weight: 600;
    font-size: 12px;
    color: rgb(var(--color-title));
}
.extras-title-optional{
    font-weight: 400;
    font-size: 12px;
    color: rgb(var(--color-dark-gray));
}


.extras-quantity-wrapper{
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}
.extras-quantity-input{
    width: 50px;
}
.extras-footer-wrapper{
    display: flex;
    width: 100%;
    gap:10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgb(var(--color-light-gray));
    align-items: end;
}
    */


.extra-details-outter-wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap:10px;
}
.extra-details-outter-wrapper > div{
    border: 1px solid rgb(var(--color-light-gray));
    background-color: white;
    border-radius: 8px;
    padding:10px;
}
.extra-details-name-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex: 1 1 auto;
}
.extra-details-input{
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgb(var(--color-light-gray));
    padding: 5px 10px;
}
.extra-details-input::placeholder{
}
.extra-details-quantity-title{
    font-size: 14px;

    color: rgb(var(--color-title));
}
.extra-details-quantity-wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:5px;
    margin-left:auto;
    flex: 1 1 auto;
    font-size: 14px;
}
.extra-details-quantity-buttons-wrapper{
    display: flex;
    margin-left: auto;
    gap:5px;
    justify-content: center;
    align-items: center;
}