@charset "utf-8";

/* product */
.product {
    & .product-list {
        & .product-head {display: flex; flex-direction: column; gap: 36px; margin: 0 0 24px;
            & .product-search {display: flex; gap: 8px;
                & .bar {width: 100%;
                    & input[type="text"] {width: 100%; height: 45px; font-size: 17px; border: 2px solid #181818; border-radius: 4px; padding: 0 12px;}
                }
                & .bt {width: 150px;
                    & button {width: 100%; height: 45px; font-size: 18px; font-weight: 600; color: #fff; background: #181818; text-align: center; border-radius: 4px;}
                }
            }
            & .product-cate {display: flex; flex-direction: column; gap: 8px;
                > ul {display: flex; gap: 8px; flex-wrap: wrap;
                    > li {
                        & button {font-size: 15px; font-weight: 500; color: #adb5bd; padding: 9px 18px; border-radius: 4px; background: #f9fafb;}
                        &.on {
                            & button {color: #fff; background: #181818;}
                        }
                    }
                }
            }
            & .product-util {display: flex; justify-content: space-between; align-items: flex-end;
                & .total {
                    & p {font-size: 18px;
                        & strong {color: var(--key-color);}
                    }
                }
                & .array {display: flex; gap: 24px;
                    & button {font-size: 16px; font-weight: 600; color: #adb5bd;
                        &.on {color: var(--key-color);}
                    }
                }
            }
        }
        & .product-body {
            & .list {
                > ul {display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
                    > li {background: #fff; box-shadow: var(--key-shadow); border-radius: 8px; overflow: hidden;
                        & a {display: block;
                            & .thumbs {position: relative; aspect-ratio: 23 / 14; overflow: hidden;
                                & img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover; transition: all 0.5s;}
                                & span {content: ''; position: absolute; top: -20%; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.5); -webkit-transition: -webkit-transform 0.5s; transition: transform 0.5s; -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0); transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0); z-index: 8; pointer-events: none;}
                                &::after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 2; opacity: 0; transition: all 0.5s; pointer-events: none;}
                            }
                            & .text {padding: 24px;
                                & .opt {display: flex; gap: 8px; margin: 0 0 8px;
                                    & p {font-size: 12px; line-height: 1; font-weight: 500; padding: 4px 8px; background: #f2f4f6; border-radius: 4px;}
                                }
                                & .name {
                                    & p {font-size: 20px; font-weight: 600; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
                                }
                                & .info {margin: 8px 0 24px;
                                    & p {font-size: 14px; color: #999;}
                                }
                                & .price {
                                    & p {font-size: 18px;
                                        & strong {color: var(--key-color);}
                                    }
                                    &.sale {display: flex; align-items: center; gap: 6px;
                                        & .per {font-size: 18px; font-weight: 700; color: var(--key-color);}
                                        & .original {font-size: 14px; line-height: 18px; text-decoration: line-through; color: #adb5bd;}
                                        & p {
                                            & strong {color: #222;}
                                        }
                                    }
                                }
                            }
                            &:hover {
                                & .thumbs {
                                    & img {transform: translate(-50%, -50%) scale(1.05);}
                                    & span {-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0); transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);}
                                    &::after {opacity: 0.3;}
                                }
                            }
                        }
                    }
                    &:has(.full) {grid-template-columns: repeat(5, minmax(0, 1fr));}
                    &.type02 {grid-template-columns: repeat(5, minmax(0, 1fr));}
                }
            }
        }
    }
    & .product-detail {
        & .product-head {padding: 36px; border-radius: 12px; box-shadow: var(--key-shadow);
            & .product-title {display: flex; justify-content: space-between; align-items: flex-end; margin: 0 0 36px;
                & .name {
                    & p {font-size: 36px; font-weight: 700;}
                    & span {font-size: 18px;}
                }
                & .price {
                    & p {font-size: 30px; font-weight: 700;
                        & strong {font-weight: 700; color: var(--key-color);}
                    }
                }
            }
            & .product-thumbs {position: relative; padding: 0 25% 0 0;
                & .left {aspect-ratio: 23 / 14; border-radius: 8px; overflow: hidden;
                    & .product-swiper {width: 100%; height: 100%;
                        & .swiper-slide {position: relative;
                            & img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover;}
                        }
                        & .swiper-bt {
                            & .bt-prev, .bt-next {width: unset; height: unset;
                                & svg {display: none;}
                                & i {display: flex; justify-content: center; align-items: center; width: 60px; height: 60px; font-size: 48px; border-radius: 50%; color: rgba(255, 255, 255, 0.5);}
                                &:hover {
                                    & i {color: #fff;}
                                }
                            }
                            & .bt-prev {left: 12px;}
                            & .bt-next {right: 12px;}
                        }
                        & .swiper-pg {
                            & .swiper-pagination {position: absolute; top: unset; bottom: 24px; left: unset; right: 24px; width: unset; color: #fff; font-size: 14px;
                                & span {
                                    &.swiper-pagination-total {opacity: 0.7;}
                                }
                            }
                        }
                    }
                }
                & .right {position: absolute; top: 0; right: 0; display: flex; flex-direction: column; gap: 12px; width: calc(25% - 12px); height: 100%;
                    & .product-img {position: relative; width: 100%; height: calc(100% / 3); overflow: hidden; border-radius: 8px;
                        & img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover;}
                        & .front {position: absolute; top: 0; left: 0; display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 8px; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); cursor: pointer;
                            & i {color: #fff;}
                            & p {color: #fff;}
                        }
                    }
                }
            }
            & .product-layer {position: fixed; top: 0; left: 0; width: 100%; height: var(--view-height); background: rgba(0, 0, 0, 0.8); z-index: 999;
                & .box {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; gap: 24px; width: 1024px; height: 80%; background: #fff; border-radius: 12px; padding: 24px;
                    & .view {position: relative; overflow: hidden; border-radius: 4px; flex: 1;
                        & img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover;}
                    }
                    & .list {
                        > ul {display: flex; justify-content: center; gap: 4px;
                            > li {position: relative; width: calc(100% / 8); aspect-ratio: 23 / 14; border-radius: 4px; overflow: hidden; cursor: pointer;
                                & img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover;}
                            }
                        }
                    }
                    & .btn {text-align: center;
                        & button {width: 100%; height: 42px; font-size: 16px; color: #fff; background: var(--key-color); text-align: center; box-shadow: var(--key-shadow); border-radius: 4px;}
                    }
                }
            }
        }
        & .product-body {display: flex; justify-content: space-between; padding: 48px 0 0;
            & .product-info {display: flex; flex-direction: column; gap: 36px; width: calc(100% - 436px); padding: 36px; box-shadow: var(--key-shadow); border-radius: 12px;
                & .con {
                    & .tit {margin: 0 0 24px;
                        & p {font-size: 18px; font-weight: 600;}
                    }
                    & .tb {
                        > ul {display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 0;
                            > li {display: flex;
                                & span {width: 70px; color: #adb5bd; font-size: 15px;}
                                & p {width: calc(100% - 70px); font-size: 15px;}
                            }
                        }
                    }
                    & .desc {display: flex; flex-direction: column; gap: 12px; width: 100%; min-height: 200px;
                        & img {width: 100%;}
                    }
                    & .guide {padding: 24px; background: #f2f4f6; border-radius: 8px;
                        & p {font-weight: 600; margin: 0 0 12px;}
                        & span {display: block; font-size: 14px; margin: 0 0 4px;
                            &:last-child {margin: 0;}
                        }
                    }
                    & .seller {display: flex; align-items: center; gap: 12px;
                        & .people {position: relative; width: 60px; height: 60px; border-radius: 50%; overflow: hidden; background-color: #f9fafb; border: 3px solid var(--key-color);
                            & img {position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 100%; object-fit: cover; padding: 8px 8px 0;}
                        }
                        & .txt {
                            & p {font-weight: 600;}
                            & span {font-weight: 500;}
                        }
                    }
                }
            }
            & .product-sum {width: 400px;
                & .con {position: sticky; top: calc(var(--header-height) + 48px); right: 0; width: 100%; padding: 36px; box-shadow: var(--key-shadow); border-radius: 12px;
                    & .info {
                        & .name {margin: 0 0 8px;
                            & p {font-size: 30px; line-height: 1.2; font-weight: 700; margin: 0 0 4px;}
                            & span {font-size: 15px; color: #adb5bd;}
                        }
                        & .price {
                            & p {font-size: 18px; font-weight: 500;
                                & strong {font-weight: 600; color: var(--key-color);}
                            }
                        }
                    }
                    & .tb {margin: 12px 0 24px;
                        > ul {
                            > li {display: flex; justify-content: space-between; margin: 0 0 8px;
                                &:last-child {margin: 0;}
                                & span {font-weight: 500;}
                                & p {color: #999;}
                            }
                        }
                    }
                    & .seller {display: flex; align-items: center; gap: 16px; margin: 0 0 24px;
                        & .people {position: relative;
                            & img {width: 60px;}
                        }
                        & .txt {
                            & p {font-size: 20px; font-weight: 600; margin: 0 0 4px;}
                            & span {font-size: 15px;}
                        }
                    }
                    & .btn {display: flex; flex-direction: column; gap: 8px;
                        & a {display: block; width: 100%; line-height: 42px; font-size: 16px; font-weight: 500; border-radius: 4px; text-align: center;
                            &.call {background: var(--key-color); color: #fff;}
                            &.back {background: #fff2f2; color: var(--key-color);}
                        }
                    }
                }
            }
        }
    }
    @media (width <= 1280px) {
        & .product-list {
            & .product-body {
                & .list {
                    > ul {grid-template-columns: repeat(3, minmax(0, 1fr));}
                }
            }
        }
        & .product-detail {
            & .product-body {
                & .product-info {
                    & .con {
                        & .tb {
                            > ul {grid-template-columns: repeat(2, minmax(0, 1fr));}
                        }
                    }
                }
            }
        }
    }
    @media (width <= 1024px) {
        & .product-detail {
            & .product-head {
                & .product-title {
                    & .name {
                        & p {font-size: 28px;}
                    }
                }
                & .product-layer {
                    & .box {width: calc(100% - 40px);}
                }
            }
            & .product-body {flex-direction: column; gap: 36px;
                & .product-info {width: 100%; order: 2;}
                & .product-sum {width: 100%; order: 1;
                    & .con {position: relative; top: unset; right: unset;
                        & .info {
                            & .name {
                                & p {font-size: 28px;}
                                & span {font-size: 16px;}
                            }
                        }
                        & .tb {
                            > ul {display: flex; flex-wrap: wrap; gap: 12px;
                                > li {display: block; width: calc(100% / 3 - 8px); margin: 0;
                                    & p {font-size: 15px;}
                                    & span {font-size: 15px;}
                                }
                            }
                        }
                        & .seller {
                            & .people {
                                & img {width: 50px;}
                            }
                        }
                    }
                }
            }
        }
    }
    @media (width <= 860px) {
        & .product-list {
            & .product-head {
                & .product-cate {
                    > ul {overflow-x: auto; flex-wrap: nowrap;}
                }
            }
            & .product-body {
                & .list {
                    > ul {grid-template-columns: repeat(2, minmax(0, 1fr));}
                }
            }
        }
        & .product-detail {
            & .product-head {padding: 24px;
                & .product-title {margin: 0 0 24px;}
                & .product-thumbs {padding: 0;
                    & .right {position: relative; top: unset; right: unset; width: 100%; flex-direction: unset; margin: 12px 0 0;
                        & .product-img {aspect-ratio: 23 / 14; height: unset;}
                    }
                }
                & .product-layer {
                    & .box {height: 80%; gap: 16px; padding: 16px;
                        & .list {
                            > ul {flex-wrap: wrap; justify-content: flex-start; gap: 8px;
                                > li {width: calc(100% / 4 - 6px);}
                            }
                        }
                        & .btn {
                            & button {height: 36px; font-size: 14px;}
                        }
                    }
                }
            }
            & .product-body {padding: 24px 0 0; gap: 24px;
                & .product-sum {
                    & .con {padding: 24px;}
                }
                & .product-info {padding: 24px; gap: 24px;}
            }
        }
    }
    @media (width <= 640px) {
        & .product-list {
            & .product-head {gap: 16px; margin: 0 0 16px;
                & .product-cate {
                    > ul {
                        > li {
                            & button {font-size: 14px; padding: 8px 16px;}
                        }
                    }
                }
                & .product-search {
                    & .bar {
                        & input[type="text"] {height: 36px; font-size: 15px;}
                    }
                    & .bt {width: 100px;
                        & button {height: 36px; font-size: 15px;}
                    }
                }
                & .product-util {align-items: center;
                    & .total {
                        & p {font-size: 13px;}
                    }
                    & .array {gap: 8px;
                        & button {font-size: 13px;}
                    }
                }
            }
            & .product-body {
                & .list {
                    > ul {grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
                        > li {
                            & a {
                                & .text {
                                    & .name {
                                        & p {font-size: 18px;}
                                    }
                                    & .info {margin: 8px 0 16px;
                                        & p {font-size: 12px;}
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        & .product-detail {
            & .product-head {
                & .product-title {
                    & .name {
                        & p {font-size: 20px;}
                        & span {font-size: 15px;}
                    }
                    & .price {
                        & p {font-size: 20px;}
                    }
                }
            }
            & .product-body {
                & .product-sum {
                    & .con {
                        & .info {
                            & .name {
                                & p {font-size: 20px;}
                                & span {font-size: 14px;}
                            }
                        }
                        & .tb {margin: 24px 0;
                            > ul {
                                > li {width: calc(100% / 2 - 6px);}
                            }
                        }
                        & .seller {gap: 12px;
                            & .txt {
                                & p {font-size: 18px;}
                            }
                        }
                        & .btn {
                            & a {font-size: 14px; line-height: 36px;}
                        }
                    }
                    & .price {
                        & p {font-size: 20px;}
                    }
                }
                & .product-info {gap: 36px;
                    & .con {
                        & .tit {margin: 0 0 16px;}
                    }
                }
            }
        }
    }
    @media (width <= 460px) {
        & .product-list {
            & .product-body {
                & .list {
                    > ul {grid-template-columns: repeat(1, minmax(0, 1fr));}
                }
            }
        }
        & .product-detail {
            & .product-head {padding: 16px;
                & .product-title {flex-direction: column; margin: 0 0 16px; gap: 8px;
                    & .name {width: 100%;
                        & p {font-size: 18px;}
                        & span {font-size: 14px;}
                    }
                    & .price {width: 100%;}
                }
                & .product-thumbs {
                    & .left {
                        & .product-swiper {
                            & .swiper-bt {
                                & .bt-prev, & .bt-next {
                                    & i {width: 30px; height: 30px; font-size: 30px;}
                                }
                            }
                            & .swiper-pg {
                                & .swiper-pagination {bottom: 12px; right: 16px; font-size: 12px;}
                            }
                        }
                    }
                    & .right {display: none;}
                }
            }
            & .product-body {padding: 16px 0 0; gap: 16px;
                & .product-sum {
                    & .con {padding: 16px;
                        & .info {
                            & .name {
                                & p {font-size: 18px;}
                            }
                            & .price {
                                & p {font-weight: 700;
                                    & strong {font-weight: 700;}
                                }
                            }
                        }
                    }
                }
                & .product-info {padding: 16px;
                    & .con {
                        & .tb {
                            > ul {gap: 12px;
                                > li {display: block;
                                    & span {width: 100%; color: #222; font-weight: 500;}
                                    & p {width: 100%; color: #999;}
                                }
                            }
                        }
                        & .guide {padding: 16px;
                            & span {margin: 0 0 8px;
                                & i {display: none;}
                            }
                        }
                    }
                }
            }
        }
    }
}

/* about */
.about {
    & .about-intro {position: relative; display: flex; flex-direction: column; gap: 80px; padding: 80px 0;
        &::before {content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 100%; background: linear-gradient(to bottom, #fff, #f5f5f5); z-index: -1;}
        & .txt {text-align: center;
            & h2 {font-size: 48px; line-height: 1.2; font-weight: 600; margin: 0 0 36px;
                & strong {font-weight: 600; background: linear-gradient(130deg, var(--key-color) 0%, #ff6200 100%); -webkit-background-clip: text; -webkit-text-fill-color: rgba(0, 0, 0, 0); margin: 0 0 36px;}
            }
            & p {font-size: 18px; font-weight: 500;}
        }
        & .list {
            > ul {display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
                > li {background: #fff; box-shadow: var(--key-shadow); border-radius: 12px; text-align: center; padding: 24px;
                    & img {height: 60px; opacity: 0.2;}
                    & p {font-size: 18px; font-weight: 600; margin: 24px 0 12px;}
                    & span {}
                }
            }
        }
    }
    & .about-text {background: url("/img/contents/about-bg.png") no-repeat; background-size: 860px; background-position: bottom center; padding: 80px 0 400px;
        & h2 {font-size: 48px; font-weight: 600; margin: 0 0 36px;
            & strong {position: relative; font-weight: 600;
                &::before {content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: calc(100% + 8px); height: 12px; background: linear-gradient(130deg, var(--key-color) 0%, #ff6200 100%); opacity: 0.7; border-radius: 4px; z-index: -1;}
            }
        }
        & p {font-size: 18px; font-weight: 500;}
    }
    @media (width <= 1024px) {
        & .about-intro {gap: 48px; padding: 40px 0 80px;
            & .txt {
                & h2 {font-size: 36px;}
            }
            & .list {
                & > ul {
                    & > li {
                        & span br {display: none;}
                    }
                }
            }
        }
        & .about-text {padding: 80px 0 300px; text-align: center;
            & h2 {font-size: 36px;
                & strong::before {height: 8px;}
            }
        }
    }
    @media (width <= 860px) {
        & .about-intro {gap: 36px; padding: 0 0 48px;
            & .txt {
                & h2 {font-size: 30px; margin: 0 0 24px;}
                & P {font-size: 16px;}
            }
            & .list {
                & > ul {grid-template-columns: repeat(1, minmax(0, 1fr));
                    & > li {
                        & span br {display: none;}
                    }
                }
            }
        }
        & .about-text {padding: 48px 0 300px; background-size: 640px;
            & h2 {font-size: 30px;
                & strong::before {height: 6px;}
            }
            & p {font-size: 16px;}
        }
    }
    @media (width <= 640px) {
        & .about-intro {padding: 0 0 36px;
            & .txt {
                & h2 {font-size: 24px;}
                & P {font-size: 15px;
                    & br {display: none;}
                }
            }
            & .list {
                & > ul {grid-template-columns: repeat(1, minmax(0, 1fr));
                    & > li {
                        & p {font-size: 16px; margin: 16px 0 8px;}
                        & span {font-size: 15px;}
                    }
                }
            }
        }
        & .about-text {padding: 36px 0 220px; background-size: 360px;
            & h2 {font-size: 24px; margin: 0 0 24px;}
            & p {font-size: 15px;
                & br {display: none;}
            }
        }
    }
}

/* location */
.location {display: flex; align-items: center; gap: 48px;
    & .location-map {flex: 1; border-radius: 12px; box-shadow: var(--key-shadow); overflow: hidden;
        & .map-con {width: 100%;}
        & .root_daum_roughmap {
            & .wrap_map {height: 500px !important;}
            & .wrap_controllers {display: none;}
            & .cont {display: none;}
            & .map_border {display: none;}
        }
    }
    & .location-info {position: relative; flex: 1; border-radius: 0 12px 0 12px; box-shadow: var(--key-shadow); background-color: #fff; background-image: url("/img/layout/logo.svg"); background-repeat: no-repeat; background-position: top 20px right 36px; background-size: 180px; padding: 48px;
        &::before {content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 36px; border-top: 6px solid var(--key-color); border-left: 6px solid var(--key-color);}
        &::after {content: ''; position: absolute; bottom: 0; right: 0; width: 36px; height: 36px; border-bottom: 6px solid var(--key-color); border-right: 6px solid var(--key-color);}
        > ul {
            > li {margin: 0 0 24px;
                &:last-child {margin: 0;}
                & p {font-size: 20px; font-weight: 600; margin: 0 0 8px;}
                & span {}
            }
        }
    }
    @media (width <= 1024px) {flex-direction: column;
        & .location-map {width: 100%;}
        & .location-info {width: 100%;}
    }
    @media (width <= 640px) {
        & .location-map {
            & .root_daum_roughmap {
                & .wrap_map {height: 250px !important;}
            }
        }
        & .location-info {padding: 24px; background-size: 120px;
            > ul {
                > li {
                    & p {font-size: 18px;}
                }
            }
        }
    }
    @media (width <= 460px) {
        & .location-info {padding: 24px; background-size: 100px;
            &::before {width: 24px; height: 24px; border-top: 4px solid var(--key-color); border-left: 4px solid var(--key-color);}
            &::after {width: 24px; height: 24px; border-bottom: 4px solid var(--key-color); border-right: 4px solid var(--key-color);}
            > ul {
                > li {margin: 0 0 16px;
                    & p {font-size: 16px; margin: 0 0 4px;}
                    & span {font-size: 14px;}
                }
            }
        }
    }
}

/* etc */
.privacy {
    & .privacy-con {box-shadow: var(--key-shadow); border-radius: 12px;
        > ul {padding: 36px; background: #f9f9f9;
            > li {padding: 0 0 36px;
                & h2 {font-size: 18px; line-height: 1.2; padding: 0 0 12px;}
                & p {font-size: 15px; padding: 0 0 8px;
                    &.pd {padding: 0 0 8px 24px;}
                    &.bold {font-weight: 600;}
                    &:last-child {padding: 0;
                        &.pd {padding: 0 0 0 24px;}
                    }
                }
                &:last-child {padding: 0;}
            }
        }
    }
    @media (width <= 640px) {
        & .privacy-con {
            > ul {padding: 24px; max-height: 400px; overflow-y: scroll;
                > li {padding: 0 0 24px;
                    & h2 {font-size: 15px;}
                    & p {font-size: 14px; padding: 0 0 4px;
                        &.pd {padding: 0 0 4px 16px;}
                        &:last-child {
                            &.pd {padding: 0 0 4px 16px;}
                        }
                    }
                }
            }
        }
    }
}

.result {
    & .result-search {display: flex; gap: 8px;
        & .bar {width: 100%;
            & input[type="text"] {width: 100%; height: 45px; font-size: 17px; border: 2px solid var(--key-color); border-radius: 4px; padding: 0 12px;}
        }
        & .bt {width: 150px;
            & button {width: 100%; height: 45px; font-size: 18px; font-weight: 600; color: #fff; background: var(--key-color); text-align: center; border-radius: 4px;}
        }
    }
    & .result-box {
        & .total {padding: 24px 0;
            & p {font-size: 18px;}
        }
        & .list {display: flex; flex-direction: column; gap: 60px;
            & .con {
                & .cate {background: #f9f9f9; padding: 12px; border: 1px solid #eee; border-radius: 4px; margin: 0 0 24px;
                    & p {font-size: 15px; line-height: 1; font-weight: 500; color: #999;}
                }
                & .item {
                    > ul {display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
                        > li {background: #fff; box-shadow: var(--key-shadow); border-radius: 8px; overflow: hidden;
                            & a {display: block;
                                & .thumbs {position: relative; aspect-ratio: 23 / 14; overflow: hidden;
                                    & img {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover; transition: all 0.5s;}
                                    & span {content: ''; position: absolute; top: -20%; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.5); -webkit-transition: -webkit-transform 0.5s; transition: transform 0.5s; -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0); transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0); z-index: 8; pointer-events: none;}
                                    &::after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 2; opacity: 0; transition: all 0.5s; pointer-events: none;}
                                }
                                & .text {padding: 24px;
                                    & .opt {display: flex; gap: 8px; margin: 0 0 8px;
                                        & p {font-size: 12px; line-height: 1; font-weight: 500; padding: 4px 8px; background: #f2f4f6; border-radius: 4px;}
                                    }
                                    & .name {
                                        & p {font-size: 20px; font-weight: 600; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
                                    }
                                    & .info {margin: 8px 0 24px;
                                        & p {font-size: 14px; color: #999;}
                                    }
                                    & .price {
                                        & p {font-size: 18px;
                                            & strong {color: var(--key-color);}
                                        }
                                    }
                                }
                                &:hover {
                                    & .thumbs {
                                        & img {transform: translate(-50%, -50%) scale(1.05);}
                                        & span {-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0); transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);}
                                        &::after {opacity: 0.3;}
                                    }
                                }
                            }
                            &.full {grid-column: 1 / 3; grid-row: 1 / 3;
                                & a {
                                    & .thumbs {aspect-ratio: 23 / 18;}
                                    & .text {padding: 42px 36px;
                                        & .opt {margin: 0 0 16px;
                                            & p {font-size: 16px;}
                                        }
                                        & .name {
                                            & p {font-size: 36px;}
                                        }
                                        & .info {margin: 16px 0 24px;
                                            & p {font-size: 18px;}
                                        }
                                        & .price {
                                            & p {font-size: 24px;}
                                        }
                                    }
                                }
                            }
                        }
                        &:has(.full) {grid-template-columns: repeat(5, minmax(0, 1fr));}
                        &.type02 {grid-template-columns: repeat(5, minmax(0, 1fr));}
                    }
                }
                & .card {
                    > ul {display: flex; flex-direction: column; gap: 24px;
                        > li {
                            & a {display: block; padding: 0 24px;
                                & p {font-size: 18px; font-weight: 600; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; margin: 0 0 8px;}
                                & span {font-size: 15px; color: #999; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; -webkit-line-clamp: 2;}
                                &:hover {
                                    & p {text-decoration: underline; text-underline-offset: 4px;}
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    @media (width <= 1280px) {
        & .result-box {
            & .list {
                & .con {
                    & .item {
                        > ul {
                            > li {
                                &.full {grid-column: unset; grid-row: unset;
                                    & a {
                                        & .thumbs {aspect-ratio: 23 / 14;}
                                        & .text {padding: 24px;
                                            & .opt {margin: 0 0 8px;
                                                & p {font-size: 12px;}
                                            }
                                            & .name {
                                                & p {font-size: 20px;}
                                            }
                                            & .info {margin: 8px 0 24px;
                                                & p {font-size: 14px;}
                                            }
                                            & .price {
                                                & p {font-size: 18px;}
                                            }
                                        }
                                    }
                                }
                            }
                            &:has(.full) {grid-template-columns: repeat(3, minmax(0, 1fr));
                                > li:last-child {display: none;}
                            }
                        }
                    }
                }
            }
        }
    }
    @media (width <= 1024px) {
        & .result-search {
            & .bar {
                & input[type="text"] {font-size: 16px; height: 40px;}
            }
            & .bt {
                & button {font-size: 16px; height: 40px;}
            }
        }
        & .result-box {
            & .list {
                & .con {
                    & .item {
                        > ul {grid-template-columns: repeat(3, minmax(0, 1fr));
                            > li {
                                &:nth-last-child(2) {display: none;}
                            }
                            &:has(.full) {
                                > li {
                                    &:nth-last-child(2) {display: block;}
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    @media (width <= 860px) {
        & .result-box {
            & .list {
                & .con {
                    & .item {
                        > ul {grid-template-columns: repeat(2, minmax(0, 1fr));
                            &:has(.full) {grid-template-columns: repeat(2, minmax(0, 1fr));}
                        }
                    }
                }
            }
        }
    }
    @media (width <= 640px) {
        & .result-search {
            & .bar {
                & input[type="text"] {height: 36px; font-size: 15px;}
            }
            & .bt {
                & button {height: 36px; font-size: 15px;}
            }
        }
        & .result-box {
            & .total {padding: 16px 0;
                & p {font-size: 14px;}
            }
            & .list {
                & .con {
                    & .cate {margin: 0 0 16px;
                        & p {font-size: 14px;}
                    }
                    & .item {
                        > ul {gap: 16px;
                            > li {
                                & a {
                                    & .text {padding: 16px;
                                        & .name {
                                            & p {font-size: 16px;}
                                        }
                                        & .info {margin: 8px 0 16px;
                                            & p {font-size: 12px;}
                                        }
                                    }
                                }
                                &.full {
                                    & a {
                                        & .text {padding: 16px;
                                            & .name {
                                                & p {font-size: 18px;}
                                            }
                                            & .info {margin: 8px 0 16px;
                                                & p {font-size: 12px;}
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                    & .card {
                        > ul {
                            > li {
                                & a {padding: 0 16px;
                                    & p {font-size: 16px;}
                                    & span {font-size: 14px;}
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    @media (width <= 460px) {
        & .result-box {
            & .list {
                & .con {
                    & .item {
                        > ul {grid-template-columns: repeat(1, minmax(0, 1fr));
                            &:has(.full) {grid-template-columns: repeat(1, minmax(0, 1fr));}
                        }
                    }
                }
            }
        }
    }
}