@charset "utf-8";

/* ------------------------------
    LIST
------------------------------ */
.shop-list-container {
    .goods-search-wrapper {}
    .goods-list-container {
        .goods-list-top {
            position: relative;
            display: flex;
            margin-bottom: 1.5rem;

            .total {
                align-self: center;
            }

            .list-sort {
                position: relative;
                margin-left: auto;

                .sort-select-box {
                    position: relative;
                    display: flex;
                    width: 120px;
                    height: 31px;
                    line-height: 31px;
                    padding: 0 10px 0 16px;
                    border: 1px solid var(--bs-border-color);
                    border-radius: 6px;
                    align-self: center;
                    font-size: 14px;

                    > span {}

                    > button {
                        display: inline-block;
                        background-color: transparent;
                        margin-left: auto;
                        align-self: center;
                        padding: 0;
                        border: none;
                        background: none;

                        > .svg-icon-arrow {
                            width: 15px;
                            height: 15px;
                            color: var(--bs-secondary);
                            transform: rotate(-180deg);
                            margin-left: 5px;
                        }
                    }
                }

                .sort-select-item {
                    position: absolute;
                    display: none;
                    width: 100%;
                    top: calc(100% + 5px);
                    left: 0;
                    padding: 10px 10px 10px 16px;
                    border: 1px solid var(--bs-border-color);
                    border-radius: 6px;
                    background-color: var(--bs-body-bg);
                    box-shadow: 2px 4px 12px 0 rgba(var(--bs-body-color), .1);
                    font-size: 0.875rem;
                    z-index: 10;

                    &.active {
                        display: block;
                    }

                    > ul {
                        margin: 0;
                        padding: 0;
                        list-style: none;
                    }
                    > ul > li {
                        margin: 0;
                        padding: 0;
                        list-style: none;
                        position: relative;
                        display: flex;
                        line-height: 23px;
                        cursor: pointer;

                        &.selected {
                            color: var(--bs-primary);
                        }
                    }
                }
            }
        }
        .goods-list-wrapper {
            .goods-list-item {
                .list-item-box {
                    .goods-list-image {
                        .goods-link {
                            .goods-image {
                                transition: transform 0.25s;
                            }
                        }
                        &:hover {
                            .goods-image {
                                transform: scale(1.1);
                            }
                        }
                    }
                    .goods-list-content {
                        .goods-name {
                            font-size: 1.25rem;
                        }
                        .price-box {}
                    }

                }
            }
        }
    }
}



/* ------------------------------
    VIEW
------------------------------ */
.shop-view-container {
    .goods-view-title {}
    .goods-view-container {
        .goods-main-container {
            .goods-image {
                .goods-image-container {
                    border: 1px solid var(--bs-border-color);
                    border-radius: var(--bs-border-lg-radius);
                }
                .goods-thumb-container {
                    .swiper-slide {
                        overflow: hidden;
                        border: 1px solid var(--bs-border-color);
                        border-radius: var(--bs-border-radius);
                    }
                    .swiper-slide-thumb-active {
                        border-color: var(--bs-body-color);
                    }
                    .swiper-slide-thumb-active img {
                        opacity: 0.5;
                        filter: grayscale(1);
                    }
                }
            }
            .goods-info {
                .goods-condition {
                    .condition-row {
                        .condition-title {
                            margin-bottom: 0.5rem;
                        }
                        .condition-item {}
                    }

                    .goods-option {}
                    .goods-rental {}
                }
                .goods-price {}
                .goods-summary {}
                .goods-button {}
            }
        }
        .goods-detail-container {
            .goods-detail-tab-menu {}
            .goods-detail-tab-content {}
        }
    }
}



/* ------------------------------
    CHECKOUT
------------------------------ */
.shop-checkout-container {
    .page-title {}
    .page-content-container {
        .content-main-container {
            .order-checkout-wrapper {}
            .order-condition-wrapper {}
        }
    }
}



/* ------------------------------
    COMPLETE
------------------------------ */
.shop-complete-container {}
