﻿/* Product CSS ------------------ */

*:focus {
    outline-color: transparent;
    outline-style: none;
}

.product-header {
    padding: 0px 0px 10px 5px;
}

    .product-header .desc {
        font-size: clamp(2em, 2vw, 2.5em);
    }

    .product-header .style {
        font-size: clamp(1.05em, 1vw, 1.2em);
        color: #006ab6;
        padding: 0px 0px 0px 0px;
    }

.product-info {
    border: 1px solid #dcdcdc;
    width: 100%;
    min-width: 300px;
}

    .product-info .product-price {
        /*display: none;*/
        font-size: 1.5em;
        padding: 10px 0px 10px 10px;
        font-weight: bold;
    }

    .product-info .product-qty {
        /*display: none;*/
        align-items: center;
        padding: 10px 0px 10px 0px;
        margin-top: 0.5rem !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
    }

.product-image .product-qty {
    /* width: 50%;*/
    align-items: center;
    margin-top: 0.5rem !important;
    margin-bottom: 3rem !important;
    flex-direction: row !important;
    margin-left: auto;
}

.product-price .uom {
    font-size: .8em;
    font-weight: bold;
}

.product-image .product-price {
    font-size: clamp(1.4em, 2vw, 2em);
    padding: 10px 0px 10px 0px;
    font-weight: bold;
    text-align: right;
}

.product-svg {
    position: relative;
}

    .product-svg .stock-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 71, 122, 0.5);
        color: white;
        width: 100%;
        padding: 10px;
    }

.product-customize {
    display: flex;
}

    .product-customize button {
        background-color: #006ab6;
        color: #fff;
    }

.product-options {
    background-color: #f2f2f2;
    padding: 10px 10px 10px 10px;
}

.product-images-container {
}

.product-offcanvas {
}

.product-wrapper {
}

    .product-wrapper .browse-selector-container {
        height: 0px;
        width: 0px;
        border: none;
        overflow: hidden;
        -webkit-transition: opacity 0.1s ease 0.1s;
        -moz-transition: opacity 0.1s ease 0.1s;
        -o-transition: opacity 0.1s ease 0.1s;
        transition: opacity 0.1s ease 0.1s;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0.4);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        opacity: 0;
    }

        .product-wrapper .browse-selector-container.show {
            width: 100%;
            display: block;
            border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
            padding: 10px;
            opacity: 1;
        }

        .product-wrapper .browse-selector-container.new {
            border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
        }

    .product-wrapper .browse-option-container {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0px;
        width: 0px;
        height: 0px;
        background: white;
        z-index: 100;
        display: none;
    }

        .product-wrapper .browse-option-container.show {
            width: 100%;
            display: block;
            padding: 10px;
            opacity: 1;
            overflow-y: auto;
        }

    .product-wrapper .option[data-ctrl="SI"] .option-input {
        padding-left: 10px;
    }

        .product-wrapper .option[data-ctrl="SI"] .option-input > a:hover {
            color: #0b5ed7;
        }

    .product-wrapper .cart-add-wrapper {
        position: relative;
    }

    .product-wrapper .design-btns {
        display: flex;
        align-items: center;
        margin-top: 10px;
        gap: 15px;
    }

        .product-wrapper .design-btns .left-buttons {
            display: flex;
            gap: 15px;
        }

        .product-wrapper .design-btns > a:last-child {
            margin-left: auto;
        }

        .product-wrapper .design-btns a {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #006ab6;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

            .product-wrapper .design-btns a:hover {
                color: #0056b3;
                text-decoration: underline;
            }

.product-footer {
    padding: 10px 10px 10px 0px;
    font-size: 1.1em;
    width: 100%;
}

    .product-footer .section {
    }

    .product-footer .title {
        padding: 5px;
        font-size: 1.1em;
    }

    .product-footer .title2 {
        font-size: 1.1em;
    }

    .product-footer .specs {
        border: 1px solid #dcdcdc;
    }

        .product-footer .specs .spec {
            background-color: #f2f2f2;
        }

        .product-footer .specs .label {
            font-weight: bold;
        }

        .product-footer .specs .value {
            background-color: #fff;
            color: var(--bs-gray);
        }

/* option UI css */

.option-wrapper {
    padding: 0px 0px 10px 0px;
}

    .option-wrapper .option-label {
        font-size: 1.2em;
        padding: 0px 0px 2px 5px;
    }

    .option-wrapper .option-inputs {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .option-wrapper .option-input {
    }

    .option-wrapper .option-browse {
        display: flex;
        flex-direction: row;
    }

    .option-wrapper .option-value {
        padding-left: 5px;
    }

        .option-wrapper .option-value .attributes {
            font-size: .8em;
        }

    .option-wrapper .option-remove {
    }

/* sm devices (tablets, 576px and up) */
@@media (min-width: 576px) {
    .product-thumbs {
        display: flex;
    }
}

/* md devices (tablets, 768px and up) */
@@media (min-width: 768px) {

    .product-info .product-price {
        display: flex;
    }

    .product-image .product-price {
        /*display: none;*/
    }

    .product-info .product-qty {
        display: flex;
    }

    .product-image .product-qty {
        /*display: none;*/
    }

    .product-customize {
        display: none;
    }

    .product-image {
    }
}

/* sm devices (desktops, 576px and up) */
@@media (min-width: 576px) {
    .product-image {
    }
}

/* md devices (desktops, 768px and up) */
@@media (min-width: 768px) {

    .product-image {
    }
}

/* lg devices (desktops, 992px and up) */
@@media (min-width: 992px) {
    .product-thumbs {
        padding: 0px 20px 0 15px;
    }

    .product-image {
    }
}

/* xl devices (large desktops, 1200px and up) */
@@media (min-width: 1200px) {
    .product-image {
    }
}

/* xxl devices (larger desktops, 1400px and up) */
@@media (min-width: 1400px) {
    .product-image {
    }
}
