@charset "UTF-8";
.productData {
    margin-bottom: 2rem;
    padding: 0 2vw;
}

.productDetail {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 2vw;
    @media only screen and (width < 767px) {
        flex-direction: column;
    }

    .productImage {
        width: 100%;
        max-width: 400px;
        border: #ddd 1px solid;
        /* margin-bottom: 32px; */
        @media only screen and (width < 767px) {
            max-width: unset;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .productImageInner {
            @media only screen and (width < 767px) {
                width: 100%;
                /*max-width: 400px;*/
                display: flex;
                flex-direction: column;
                align-items: center;

            }
            .splide {
                margin-bottom: 16px;
                .splide__slide {
                    img {
                        min-height: 100%;
                        min-width: 100%;
                        object-fit: contain;
                    }
                    .splide__track--nav > .splide__list > & {
                        border: transparent solid 2px;
                        cursor: pointer;
                        overflow: hidden;
                        background-color: #f3f4f6;
                        height: 96px;
                        &.is-active,
                        &:hover {
                            border-color: #3b82f6;
                        }
                    }
                }
            }
        }
    }

    .bidCount {
        width: fit-content;
        border: 1px solid #6b6b6b;
        border-radius: .5rem;
        padding: .5rem 1rem;
        background-color: #fff;
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    .outOfTermButton {
        span {
            width: 18rem;
            display: block;
            text-align: center;
            padding: 8px 16px;
            color: #fff;
            border-radius: .5rem;
            background-color: #9c9c9c;
            @media only screen and (width < 767px) {
                width: 100%;
            }
        }
    }

}

.about {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1000px;
    width: 100%;
    margin: 20px auto;
    padding: 0 2vw;
        @media only screen and (width < 767px) {
            padding: 0 5vw;
        }
    h2 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 16px;
        border-bottom: 1px solid #9c9c9c;
    }
}
