/*Store CSS Styling*/

/*Store*/
.store-banner {
    position: relative;
    padding-top: 55px; 
    padding-bottom: 55px; 
    
    background-image: url('/imgs/back.jpg'); 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;

    &:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        z-index: 0;
    }
}

/*
.store-grid {
    display: grid;
    grid-template-rows: auto;
    gap: 1rem;
    row-gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
}

@media(min-width: 768px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 992px) {
    .store-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 1200px) {
    .store-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
*/

/*View Product*/
.product-thumbnail {
    padding-left: 6px;
    transition: all .1s ease;

    &:hover {
        border-left: 5px solid var(--bg-7);
        padding-left: 1px;
        cursor: pointer;
    }
}

.product-thumbnail-selected {
    padding-left: 1px;
    border-left: 5px solid var(--bg-3);
    &:hover {
        border-left: 5px solid var(--bg-7);
    }
}

#productImgDisplay {
    transition: all .3s ease;
}

.store-sku-color-icon {
    width: 25px; 
    height: 25px; 
    padding: 0; 
    border-radius: 3px;
    transition: all .3s ease;

    &:hover {
        width: 30px;
        height: 30px;
    }
}

.store-sku-color-icon-selected {
    width: 35px !important;
    height: 35px !important;
}

#product-image-container {
    overflow-x: auto;
}

@media(min-width: 768px) {
    #product-image-container {
        flex-wrap: wrap;
        overflow-x: hidden;
    }
}

.sku-select-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 12px;
    border: 1px solid var(--text-light-2);
    color: var(--text-light-2);
    transition: all .03s ease;
    width: auto;

    &:hover {
        border-color: black;
        border-width: 2px;
        color: black;
    }
}

.sku-select-btn.selected {
    border-width: 3px;
    border-color: var(--bg-5);
    color: var(--bg-5);
    font-weight: bold;
}

/*Info Section*/

/*Dashboard*/
.add-image-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid lightgrey;
    width: calc(100% - 5px);
    margin-left: 5px;
    height: 50px;
    transition: all .3s ease;

    &:hover {
        background-color: rgba(180, 180, 180, .3);
    }
}

/*Filters Section*/
.filters-container {
    position: absolute;
    left: -100vw;
    top: 0;
    transition: all .3s ease;
    background-color: var(--bg-1);
    height: 100vh;
    width: 100vw;
    padding-top: 125px;
    padding-left: 25px;
    padding-right: 25px;
    overflow-y: auto;
}

@media(min-width: 992px) {
    .filters-container {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        padding-top: 0;
    }
}

.info-slider {
    width: 100%;
}

.info-slider ul, .info-slider ul li, .info-slider p {
    width: fit-content;
    list-style: inside;
}

.info-slider ul {
    padding-left: 0;
}