/* 공통요소 */
#header {
    background-color: #fffe;
}
#wrapper {}
#container {
    width: 100%;
}
main {
    padding-top: 100px;
    /* max-width: 1900px; */
    margin: 0 auto;
}
.inner {
    max-width: 1280px;
    margin: 0 auto;
}
.red {
    color: #9b0000;
}
strong {
    color: #9b0000;
}

/* 서브 배너 영역 */
section.topBanner {
    /* min-height: 476px; */
    margin: 0 auto;
    position: relative;
    color: #fff;
    display: flex;
    /* flex-flow: wrap; */
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
section.topBanner .infoBox {
    position: absolute;
    width: 50%;
    left: 50%;
}
section.topBanner .subTitle {
    width: 100%;
    /* font-size: 24px; */
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    align-self: flex-end;
    padding-bottom: 10px;
    /* padding-left: 45%; */
}
section.topBanner .title {
    width: 100%;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    font-family: 'Montserrat', 'Noto Sans KR';
}
section.topBanner .title img {
    /* width: 250px; */
    width: 13vw;
}
section.topBanner .banner {
    /* position: absolute; */
    /* top: 0; */
    /* z-index: -1; */
}
section.topBanner .banner img {
    display: block;
}
section.topBanner .bgBanner {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    z-index: -1;
}

/* 쇼핑몰 */
#shopping {}
#shopping .goodsList {
    padding: 100px 0;
}
#shopping .goodsList ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
#shopping .goodsList li {margin-bottom: 50px;flex: 0 0 33.333%;}
#shopping .goodsList li a {
    display: block;
    padding: 0 20px;
}
#shopping .goodsList li a:hover {}
#shopping .goodsList li .goodsInfo {
    text-align: center;
}
#shopping .goodsList li .goodsInfo .photo {
}
#shopping .goodsList li .goodsInfo .photo img {
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
}
#shopping .goodsList li .goodsInfo .name {
    font-size: 20px;
}
#shopping .goodsList li .goodsInfo .price {
    font-size: 18px;
}

#shopping .product {}
#shopping .product .inner {padding: 30px 0 50px;}
#shopping .product .goodsInfo {
    width: 51%;
}
#shopping .product .goodsInfo .photo {
    aspect-ratio: 1 / 1;
    position: relative;
    border: 1px solid #eee;
}
#shopping .product .goodsInfo .photo img {
          /* 핵심 */
            /* 중앙 정렬 */
                  /* 핵심 */
            /* 항상 중앙 기준 */
          width: 100%;
          height: 100%;
          object-fit: contain;      /* 핵심 */
          object-position: center;  /* 중앙 정렬 */
          display: block;
}
#shopping .product .goodsInfo .subPhoto {
    margin-top: 20px;
    display: flex;
    gap: 1.6%;
}
#shopping .product .goodsInfo .subPhoto li {
    flex: 0 0 15%;
    aspect-ratio: 1 / 1;
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
}
#shopping .product .goodsInfo .subPhoto li.first {
    order: -1;
}
#shopping .product .goodsInfo .subPhoto li img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* 핵심 */
    object-position: center;  /* 항상 중앙 기준 */
    display: block;
    cursor: pointer;
}
#shopping .product .goodsInfo .detail {padding: 50px 0;}
#shopping .product .goodsInfo .detail hr {height: 2px; margin: 10px 0;}
#shopping .product .goodsInfo .detail img {width: 100%;height: auto; vertical-align: top;}
#shopping .product .buyWrap {
    width: 42%;
    max-width: 530px;
    position: fixed;
    top: 130px;
    left: 50%;
    transform: translateX(60px);
    height: calc(100% - 150px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 20px;
}
#shopping .product .buyWrap .buyInfo {
    margin-bottom: 50px;
}
#shopping .product .buyWrap .buyInfo .mobile { display: none; }
#shopping .product .buyWrap .buyInfo .name {
    font-size: 38px;
}
#shopping .product .buyWrap .buyInfo .price {
    font-size: 28px;
    margin-bottom: 20px;
}
#shopping .product .buyWrap .buyInfo .summary {
    margin-bottom: 20px;
}
#shopping .product .buyWrap .buyInfo .size {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    line-height: 2em;
}
#shopping .product .buyWrap .buyInfo .size dt {
    flex: 0 0 20%;
    font-weight: 500;
}
#shopping .product .buyWrap .buyInfo .size dd {
    flex: 0 0 80%;
    font-weight: 200;
}
#shopping .product .buyWrap .buyInfo .qtyButton {
    display: flex;
    gap: 10px;
    align-items: center;
}
#shopping .product .buyWrap .buyInfo .qtyGroup {}
#shopping .product .buyWrap .buyInfo .qtyGroup input {
    border: 1px solid #ccc;
    line-height: normal;
    width: 50px;
    text-align: right;
    height: 35px;
    box-sizing: border-box;
}
#shopping .product .buyWrap .buyInfo .qtyGroup button {display: none;}
#shopping .product .buyWrap .buyInfo .btnGroup {}
#shopping .product .buyWrap .buyInfo .btnGroup button {
    font-size: 16px;
    height: 35px;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    padding: 0 30px;
    line-height: 35px;
    border-radius: 5px;
}
#shopping .product .buyWrap .buyInfo .btnGroup .cartAdd {
    background-color: #ddd;
}
#shopping .product .buyWrap .buyInfo .btnGroup .buyNow {
    background-color: #9b0000;
    color: #fff;
}
#shopping .product .buyWrap .buyInfo .cartInfo {
    background-color: #9b00000d;
    border-radius: 10px;
    margin-top: 20px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #9b0000;
}
#shopping .product .buyWrap .buyInfo .cartInfo .info {}
#shopping .product .buyWrap .buyInfo .cartInfo .goCart {
    color: #9b0000;
    display: inline-block;
    border-bottom: 1px solid #9b0000;
}
#shopping .product .buyWrap .buyInfo .relatedList {display: flex;gap: 10px;flex-wrap: wrap;justify-content: start;margin-top: 20px;}
#shopping .product .buyWrap .buyInfo .relatedList li {flex: 0 0 calc((100% - 40px) / 5); /* 4개 기준 크기 계산 (여백 포함) */box-sizing: border-box;}
#shopping .product .buyWrap .buyInfo .relatedList li img {
    border: 1px solid #eee;
    border-radius: 5px;
    vertical-align: top;
     /* li 안의 이미지를 li 크기에 맞춤 */
    box-sizing: border-box;
}
#shopping .product .buyWrap .subTitle {font-size: 18px;padding: 20px 0 10px;}
#shopping .product .buyWrap .return {}
#shopping .product .buyWrap .return li {position: relative;padding-left: 15px;}
#shopping .product .buyWrap .return li:before {
    content: "·";
    display: block;
    position: absolute;
    left: 5px;
}
#shopping .product .buyWrap .taxes {}
#shopping .product .buyWrap .taxes li {position: relative;padding-left: 15px;}
#shopping .product .buyWrap .taxes li:before {
    content: "·";
    display: block;
    position: absolute;
    left: 5px;
}

/* 장바구니 */
#cart {}
#cart .product {
    padding: 50px 0;
}
#cart .product .title {
    font-size: 2.8rem;
    font-weight: 500;
}
#cart .product .cartWrap {
    display: flex;
    gap: 50px;
}
#cart .product .cartList {
    flex: 1;
}
#cart .product .cartList li {
    border-bottom: 1px solid hsla(0, 0%, 7%, .11);
}
#cart .product .cartList li dl {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
#cart .product .cartList li dl .photo {
    width: 140px;
    padding: 20px;
}
#cart .product .cartList li dl .photo img {
    border: 1px solid #eee;
    border-radius: 10px;
    box-sizing: border-box;
}
#cart .product .cartList li dl .goods {
    flex: 1;
    padding: 20px;
}
#cart .product .cartList li dl .goods .name {
    display: inline-block;
    border-bottom: 1px solid;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
#cart .product .cartList li dl .goods .name .option {}
#cart .product .cartList li dl .goods .price {
    margin-bottom: 10px;
}
#cart .product .cartList li dl .goods .summary {
    font-size: 0.8rem;
    margin-bottom: 10px;
}
#cart .product .cartList li dl .goods .quantity {}
#cart .product .cartList li dl .goods .quantity .inputGroup {
    display: flex;
}
#cart .product .cartList li dl .goods .quantity input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    height: 25px;
    outline: none;
}
#cart .product .cartList li dl .goods .quantity button {
    border: 1px solid #ccc;
    background: #fff;
    width: 30px;
    font-size: 16px;
    background-color: #eee;
}
#cart .product .cartList li dl .goods .quantity .minus {
    border-radius: 5px 0 0 5px;
    border-right: none;
}
#cart .product .cartList li dl .goods .quantity .plus {
    border-radius: 0 5px 5px 0;
    border-left: none;
}
#cart .product .cartList li dl .total {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    justify-content: space-evenly;
}
#cart .product .cartList li dl .total span {}
#cart .product .cartList li dl .total .remove {
    border: none;
    background-color: #000;
    color: #fff;
    width: 25px;
    height: 25px;
}
#cart .product .cartList .cartTitle {
    font-size: 20px;
}
#cart .product .cartList .cartTitle dl {
    display: flex;
    justify-content: space-between;
}
#cart .product .cartList .cartTitle dl dt {
    padding: 10px 70px;
}
#cart .product .cartList .cartTitle dl dd {
    padding: 10px 30px;
}
#cart .product .cartList .noneCart {
    text-align: center;
    padding: 100px 0;
}
#cart .product .totalPrice {
    width: 400px;
    background-color: #f6f6f6;
    padding: 30px;
    box-sizing: border-box;
}
#cart .product .totalPrice .totalTitle {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 0px;
}
#cart .product .totalPrice dl {
    display: flex;
    flex-wrap: wrap;
    line-height: 4rem;
    margin-bottom: 50px;
}
#cart .product .totalPrice dl dt {
    flex: 0 0 40%;
}
#cart .product .totalPrice dl dd {
    flex: 0 0 60%;
    text-align: right;
}
#cart .product .totalPrice dl .total {
    border-top: 1px solid #ccc;
    font-size: 20px;
    font-weight: 500;
}
#cart .product .totalPrice .buyNow {
    width: 100%;
    background-color: #9b0000;
    color: #fff;
    border: none;
    font-size: 18px;
    line-height: 40px;
    border-radius: 5px;
}

/* 주문서 작성 */
.required {
    border-color: #dd4814 !important;
}
#order {
}
#order .inner {
    padding: 50px 0;
}
#order .title {
    font-size: 2.8rem;
    font-weight: 500;
}
#order .subTitle {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 5px;
}
#order .orderWrap {
}
#order .orderWrap .info {
    font-size: 14px;
    color: #666;
}
#order .orderWrap .inputGroup {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    align-items: center;
}
#order .orderWrap .inputGroup input[type=text],
#order .orderWrap .inputGroup input[type=email] {
    border: 1px solid #aaa;
    padding: 10px 10px;
    border-radius: 5px;
    flex: 1;
    font-size: 16px;
    box-sizing: border-box;
}
#order .orderWrap .inputGroup input[type=checkbox] {
    margin-right: 5px;
}
#order .orderWrap .inputGroup select {
}
#order .orderWrap .inputGroup textarea {
    border: 1px solid #aaa;
    padding: 10px 10px;
    border-radius: 5px;
    flex: 1;
    font-size: 16px;
}
#order .buyWrap {
    display: flex;
    gap: 50px;
}
#order .buyWrap .orderArea {
    flex: 1;
}
#order .buyWrap .orderArea .shipSheet {}
#order .buyWrap .orderArea .billSheet {}
#order .buyWrap .orderArea .memoArea {}
#order .buyWrap .orderArea .payArea {
    padding-top: 50px;
}
#order .buyWrap .orderArea .payArea .info {
    margin-bottom: 20px;
}
#order .buyWrap .orderArea .payArea .inputGroup {
}
#order .buyWrap .orderArea .payArea .cart {
    font-size: 20px;
    flex: 1;
    line-height: 40px;
    padding: 5px 0;
}
#order .buyWrap .orderArea .payArea .paypalPayment {
    font-size: 20px;
    flex: 1;
    background-color: #9b0000;
    color: #fff;
    border: none;
    line-height: 40px;
    border-radius: 5px;
    padding: 5px 0;
    cursor: pointer;
}
#order .buyWrap .cartArea {
    width: 500px;
}
#order .buyWrap .cartArea .subTitle {
    margin-bottom: 20px;
}
#order .buyWrap .cartArea .cartList {
}
#order .buyWrap .cartArea .cartList li {
    border-top: 1px solid hsla(0, 0%, 7%, .11);
    padding-left: 10px;
    padding-right: 20px;
}
#order .buyWrap .cartArea .cartList li dl {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
#order .buyWrap .cartArea .cartList li dl .photo {
    width: 100px;
    padding: 20px 0;
}
#order .buyWrap .cartArea .cartList li dl .photo img {
    border: 1px solid #eee;
    border-radius: 10px;
}
#order .buyWrap .cartArea .cartList li dl .goods {
    flex: 1;
    padding: 20px 0;
}
#order .buyWrap .cartArea .cartList li dl .goods .name {
    font-size: 16px;
    margin-bottom: 10px;
}
#order .buyWrap .cartArea .cartList li dl .goods .summary {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}
#order .buyWrap .cartArea .cartList li dl .goods .price {
    font-size: 14px;
}
#order .buyWrap .cartArea .cartList li dl .total {text-align: right;}
#order .buyWrap .cartArea .payment {
    background-color: #f6f6f6;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    line-height: 3rem;
    margin-bottom: 50px;
}
#order .buyWrap .cartArea .payment dt {
    flex: 0 0 40%;
}
#order .buyWrap .cartArea .payment dd {
    flex: 0 0 60%;
    text-align: right;
}
#order .buyWrap .cartArea .payment .total {
    border-top: 1px solid #ccc;
    font-size: 20px;
    font-weight: 500;
}
/* 주문 조회 */
#order .inquiry {}
#order .inquiry .inner {}
#order .inquiry .inquiryForm {
    display: flex;
    padding: 50px 0;
    flex-direction: column;
    align-items: center;
}
#order .inquiry .inquiryForm .errorMsg {
    width: 400px;
    margin-bottom: 20px;
}
#order .inquiry .inquiryForm .errorMsg ul {}
#order .inquiry .inquiryForm .errorMsg li {
    border: 1px solid #9b0000;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    background-color: #9b00000a;
    color: #9b0000;
    margin-bottom: 10px;
    box-sizing: border-box;
}
#order .inquiry .inquiryForm .errorMsg li:before {
    font-family : xeicon;
    content: '\e9a7';
    padding-right: 5px;
}
#order .inquiry .inquiryForm .search {
    width: 400px;
}
#order .inquiry .inquiryForm .search .formGroup {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
#order .inquiry .inquiryForm .search .formGroup label {margin-bottom: 5px;font-size: 14px;}
#order .inquiry .inquiryForm .search .formGroup input {border: 1px solid #aaa;padding: 10px 10px;border-radius: 5px;flex: 1;font-size: 16px;box-sizing: border-box;}
#order .inquiry .inquiryForm .search button {
    font-size: 20px;
    width: 100%;
    background-color: #9b0000;
    color: #fff;
    border: none;
    line-height: 40px;
    border-radius: 5px;
    padding: 5px 0;
    cursor: pointer;
    margin-top: 20px;
}

/* 주문 상세 */
#order .orderDetails {
    padding: 50px 0;
}
#order .orderDetails .inner {}
#order .orderDetails .title {
    font-size: 2.8rem;
    font-weight: 500;
}
#order .orderDetails .subTitle {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
}
#order .orderDetails .orderInfo {
    display: flex;
    margin: 10px 0;
}
#order .orderDetails .orderNumber {
    margin-top: 20px;
    margin-bottom: 10px;
    flex: 1;
}
#order .orderDetails .orderNumber dl {
    display: flex;
    gap: 20px;
    font-size: 22px;
    flex-direction: column;
}
#order .orderDetails .orderNumber dl dt {
    display: flex;
    flex-direction: column;
}
#order .orderDetails .orderNumber dl dt .date {
    font-size: 18px;
    color: #666;
}
#order .orderDetails .orderNumber dl dt .number {}
#order .orderDetails .orderNumber dl dt .number strong {}
#order .orderDetails .orderNumber dl dd {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
#order .orderDetails .orderNumber dl dd .status {}
#order .orderDetails .orderNumber dl dd button {
    display: inline-flex;
    background-color: #9b0000;
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 5px 25px;
    border-radius: 5px;
    cursor: pointer;
}
#order .orderDetails .itemArea {}
#order .orderDetails .itemArea .itemList {}
#order .orderDetails .itemArea .itemList li {}
#order .orderDetails .itemArea .itemList li dl {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    align-items: center;
}
#order .orderDetails .itemArea .itemList li dl .photo {
    flex: 0 0 160px;
    padding: 10px;
}
#order .orderDetails .itemArea .itemList li dl .name {
    flex: 0 0 50%;
}
#order .orderDetails .itemArea .itemList li dl .price {
    flex: 1;
}
#order .orderDetails .itemArea .itemList li dl .quantity {
    flex: 1;
}
#order .orderDetails .itemArea .itemList li dl .subTotal {
    flex: 1;
}
#order .orderDetails .itemArea .itemList li .title {
    font-size: 18px;
    background-color: #eeeeee82;
    line-height: 60px;
}
#order .orderDetails .itemArea .itemList li .title .photo {padding: 0;}
#order .orderDetails .itemArea .itemList li .title .name {}
#order .orderDetails .itemArea .itemList li .title .price {}
#order .orderDetails .itemArea .itemList li .title .quantity {}
#order .orderDetails .itemArea .itemList li .title .subTotal {}
#order .orderDetails .itemArea .payment {
    display: flex;
    justify-content: space-evenly;
    font-size: 18px;
    background-color: #eeeeee82;
    line-height: 60px;
}
#order .orderDetails .itemArea .payment dt {
    color: #9b0000;
}
#order .orderDetails .itemArea .payment dd {}
#order .orderDetails .itemArea .payment .total {
    font-size: 22px;
}
#order .orderDetails .shipArea {
    flex: 1;
}
#order .orderDetails .shipArea .delivery {
    font-size: 22px;
    display: flex;
    flex-direction: column;
}
#order .orderDetails .shipArea .delivery .name {
    margin-bottom: 10px;
}
#order .orderDetails .shipArea .delivery .phone {margin-bottom: 10px;}
#order .orderDetails .shipArea .delivery .address {}
#order .orderDetails .shipArea .delivery .detailAddr {}
#order .orderDetails .shipArea .delivery .memo {}


.select2 {
    flex: 1;
}
.select2-container--default .select2-selection--single { height: 45px !important; }
.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px !important;
    color: #666 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 9px !important;
    right: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
}

#mask {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    color: white;
    text-align: center;
    font-size: 24px;
}

/* ipad pro & surface pro */
@media only screen and (min-width: 1366px) and (max-width: 1599px) {

}

/* ipad mini & ipad air & 해상도 작은 모니터 */
@media only screen and (min-width: 1024px) and (max-width: 1365px) {
    #shopping .product .inner {
        padding: 30px 20px 50px;
    }
    #shopping .goodsList {
        padding: 50px 0;
    }
    #shopping .goodsList ul {
        margin: 0;
    }
    #cart .product .inner {
        padding: 30px 20px 50px;
    }
    #order .inner {
        padding: 30px 20px 50px;
    }
}

/* pad 세로 및 모바일 */
@media only screen and (max-width: 1023px) {
    /* 공통요소 */
    main {
        padding-top: 55px;
    }
    #hd.line {
        background-color: #000c;
    }
    #header {
        background-color: #fffe;
    }
    #wrapper {}
    #container {
        width: 100%;
        padding-top: 60px;
    }
    .inner {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .red {
        color: #9b0000;
    }
    strong {}
    .mNone {display:none;}

    /* 서브 배너 영역 */
    section.topBanner {
        /* width: 100%; */
        /* height: 206px; */
        /* margin: 0 auto; */
        position: relative;
        /* color: #fff; */
        display: block;
        /* flex-flow: wrap; */
        /* align-items: center; */
        overflow: hidden;
    }
    section.topBanner .infoBox {
        position: absolute;
        width: 100%;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    section.topBanner .subTitle {
        width: 100%;
        font-size: 18px;
        font-weight: 300;
        text-align: center;
        align-self: flex-end;
        padding-bottom: 10px;
        text-shadow: 2px 2px black;
    }
    section.topBanner .title {
        width: 100%;
        font-size: 26px;
        font-weight: 600;
        text-align: center;
        font-family: 'Nanum Myeongjo';
        text-shadow: 2px 2px black;
    }
    section.topBanner .title img {
        width: 30vw;
    }
    section.topBanner .banner {
        position: relative;
        z-index: -1;
        width: 200%;
    }
    section.topBanner .banner img {
        /* height: 200px; */
        width: 200%;
    }

    /* 쇼핑몰 */
    #shopping {}
    #shopping .goodsList {
    padding: 40px 0 0;
}
    #shopping .goodsList ul {
    margin: 0;
}
    #shopping .goodsList li {flex: 0 0 50%;}
    #shopping .goodsList li a {
    padding: 0 7px;
}
    #shopping .goodsList li a:hover {}
    #shopping .goodsList li .goodsInfo {}
    #shopping .goodsList li .goodsInfo .photo {}
    #shopping .goodsList li .goodsInfo .photo img {}
    #shopping .goodsList li .goodsInfo .name {
    font-size: 16px;
}
    #shopping .goodsList li .goodsInfo .price {
    font-size: 14px;
}

    #shopping .product {}
    #shopping .product .inner {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
}
    #shopping .product .goodsInfo {
    width: 100%;
}
    #shopping .product .goodsInfo .photo {display: none;}
    #shopping .product .goodsInfo .photo img {}
    #shopping .product .goodsInfo .detail {
    padding: 30px 10px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}
    #shopping .product .goodsInfo .detail img {
}
    #shopping .product .buyWrap {
    position: unset;
    width: 100%;
    transform: unset;
    padding: 0 15px;
    box-sizing: border-box;
    height: unset;
}
    #shopping .product .buyWrap .buyInfo {
    margin-bottom: 30px;
}
    #shopping .product .buyWrap .buyInfo .mobile { display: block; }
    #shopping .product .buyWrap .buyInfo .name {
    font-size: 24px;
    padding: 10px 0;
    text-align: center;
}
    #shopping .product .buyWrap .buyInfo .price {
    font-size: 18px;
    margin-bottom: 10px;
}
    #shopping .product .buyWrap .buyInfo .summary {font-size: 14px;}
    #shopping .product .buyWrap .buyInfo .size {}
    #shopping .product .buyWrap .buyInfo .size dt {
    flex: 0 0 30%;
}
    #shopping .product .buyWrap .buyInfo .size dd {
    flex: 0 0 70%;
}
    #shopping .product .buyWrap .buyInfo .qtyButton {
    flex-direction: column;
    align-items: unset;
    }
    #shopping .product .buyWrap .buyInfo .qtyGroup {
    display: flex;
    align-items: center;
}
    #shopping .product .buyWrap .buyInfo .qtyGroup span {
    flex: 0 0 20%;
}
    #shopping .product .buyWrap .buyInfo .qtyGroup input {
    -webkit-appearance: none; /* Chrome, Safari, Edge */
    margin: 0;
    text-align: center;
    }
    #shopping .product .buyWrap .buyInfo .qtyGroup button {
    display: block;
    border: 1px solid #ccc;
    background: #fff;
    width: 35px;
    height: 35px;
    font-size: 16px;
    background-color: #eee;
}
    #shopping .product .buyWrap .buyInfo .qtyGroup .minus {
    border-radius: 5px 0 0 5px;
    border-right: none;
}
    #shopping .product .buyWrap .buyInfo .qtyGroup .plus {
    border-radius: 0 5px 5px 0;
    border-left: none;
}
    #shopping .product .buyWrap .buyInfo .btnGroup {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
    #shopping .product .buyWrap .buyInfo .btnGroup button {
    flex: 1;
    height: 45px;
    padding: 0;
    font-size: 14px;
    }
    #shopping .product .buyWrap .buyInfo .cartInfo {
    flex-wrap: wrap;
    line-height: 2em;
    padding: 10px;
}
    #shopping .product .buyWrap .buyInfo .cartInfo .info {}
    #shopping .product .buyWrap .buyInfo .cartInfo .goCart {
    margin-left: auto;
}
    #shopping .product .buyWrap .subTitle {
    font-size: 16px;
}
    #shopping .product .buyWrap .return {
    font-size: 14px;
    color: #555;
}
    #shopping .product .buyWrap .return li {}
    #shopping .product .buyWrap .return li:before {}
    #shopping .product .buyWrap .taxes {
    font-size: 14px;
    color: #555;
}
    #shopping .product .buyWrap .taxes li {}
    #shopping .product .buyWrap .taxes li:before {}

    /* 장바구니 */
    #cart {}
    #cart .product {
    padding: 20px 0 0;
}
    #cart .product .title {
    padding: 0 10px;
    font-size: 24px;
}
    #cart .product .cartWrap {
    flex-direction: column;
    gap: unset;
    margin-top: 20px;
}
    #cart .product .cartList {
    padding: 0 10px;
}
    #cart .product .cartList li {
    padding: 15px 0;
    border-top: 1px solid hsla(0, 0%, 7%, .11);
    border-bottom: none;
}
    #cart .product .cartList li dl {
    flex-wrap: wrap;
    gap: 2.5%;
}
    #cart .product .cartList li dl .photo {
    padding: 0;
    width: 90px;
}
    #cart .product .cartList li dl .photo img {}
    #cart .product .cartList li dl .goods {
    flex: 1;
    padding: 0;
    position: relative;
}
    #cart .product .cartList li dl .goods .name {
    font-size: 16px;
    margin-bottom: 5px;
}
    #cart .product .cartList li dl .goods .qtyGroup {
    display: flex;
    align-items: center;
}
    #cart .product .cartList li dl .goods .price {
    margin: 0;
}
    #cart .product .cartList li dl .goods .summary {
    font-size: 12px;
}
    #cart .product .cartList li dl .goods .quantity {
    margin-left: 10px;
}
    #cart .product .cartList li dl .goods .quantity .inputGroup {}
    #cart .product .cartList li dl .goods .quantity input {
    -webkit-appearance: none; /* Chrome, Safari, Edge */
    margin: 0;
}
    #cart .product .cartList li dl .goods .quantity button {}
    #cart .product .cartList li dl .goods .quantity .minus {}
    #cart .product .cartList li dl .goods .quantity .plus {}
    #cart .product .cartList li dl .total {
    flex: 0 0 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0 10px 0 35px;
    box-sizing: border-box;
}
    #cart .product .cartList li dl .total span {
    font-weight: 600;
    font-size: 16px;
}
    #cart .product .cartList li dl .total .remove {}
    #cart .product .cartList .cartTitle {
    display: none;
}
    #cart .product .cartList .cartTitle dl {
    font-size: 18px;
}
    #cart .product .cartList .cartTitle dl dt {
}
    #cart .product .cartList .cartTitle dl dd {}
    #cart .product .cartList .noneCart {}
    #cart .product .totalPrice {
    width: 100%;
    padding: 20px 10px;
    background-color: #eee;
}
    #cart .product .totalPrice .totalTitle {
    padding-bottom: 10px;
}
    #cart .product .totalPrice dl {
    margin-bottom: 30px;
    line-height: 40px;
}
    #cart .product .totalPrice dl dt {}
    #cart .product .totalPrice dl dd {}
    #cart .product .totalPrice dl .total {}
    #cart .product .totalPrice .buyNow {
    height: 45px;
}

    /* 주문서 작성 */
    .required {}
    #order {
}
    #order .inner {
    padding: 20px 0;
}
    #order .title {
    font-size: 24px;
    padding: 0 10px;
}
    #order .subTitle {
    font-size: 16px;
}
    #order .orderWrap {}
    #order .orderWrap .info {}
    #order .orderWrap .inputGroup {
    padding: 5px 0;
}
    #order .orderWrap .inputGroup input[type=text],
    #order .orderWrap .inputGroup input[type=email] {
    width: 100px;
}
    #order .orderWrap .inputGroup input[type=checkbox] {}
    #order .orderWrap .inputGroup select {}
    #order .orderWrap .inputGroup textarea {}
    #order .buyWrap {
    flex-direction: column-reverse;
    gap: 20px;
}
    #order .buyWrap .orderArea {
    padding: 0 10px;
}
    #order .buyWrap .orderArea .shipSheet {
}
    #order .buyWrap .orderArea .billSheet {}
    #order .buyWrap .orderArea .memoArea {}
    #order .buyWrap .orderArea .payArea {
    padding-top: 20px;
}
    #order .buyWrap .orderArea .payArea .info {}
    #order .buyWrap .orderArea .payArea .inputGroup {}
    #order .buyWrap .orderArea .payArea .cart {
    font-size: 16px;
}
    #order .buyWrap .orderArea .payArea .paypalPayment {
    font-size: 16px;
}
    #order .buyWrap .cartArea {
    width: 100%;
    box-sizing: border-box;
}
    #order .buyWrap .cartArea .subTitle {
    margin-bottom: 10px;
    padding: 0 10px;
}
    #order .buyWrap .cartArea .cartList {
    padding: 0 10px;
}
    #order .buyWrap .cartArea .cartList li {
    padding: 0;
}
    #order .buyWrap .cartArea .cartList li dl {
    gap: 10px;
    padding: 15px 0;
}
    #order .buyWrap .cartArea .cartList li dl .photo {
    width: 75px;
    padding: 0;
}
    #order .buyWrap .cartArea .cartList li dl .photo img {}
    #order .buyWrap .cartArea .cartList li dl .goods {
    padding: 0;
}
    #order .buyWrap .cartArea .cartList li dl .goods .name {}
    #order .buyWrap .cartArea .cartList li dl .goods .summary {}
    #order .buyWrap .cartArea .cartList li dl .goods .price {}
    #order .buyWrap .cartArea .cartList li dl .total {
}
    #order .buyWrap .cartArea .payment {
    padding: 10px 20px;
    line-height: 35px;
    margin-bottom: 0;
}
    #order .buyWrap .cartArea .payment dt {}
    #order .buyWrap .cartArea .payment dd {}
    #order .buyWrap .cartArea .payment .total {
    padding-top: 10px;
}
    /* 주문 조회 */
    #order .inquiry {}
    #order .inquiry .inner {}
    #order .inquiry .inquiryForm {
    padding: 50px 10px;
}
    #order .inquiry .inquiryForm form {
    width: 90%;
}
    #order .inquiry .inquiryForm .errorMsg {}
    #order .inquiry .inquiryForm .errorMsg ul {}
    #order .inquiry .inquiryForm .errorMsg li {}
    #order .inquiry .inquiryForm .errorMsg li:before {}
    #order .inquiry .inquiryForm .search {width: 100%;}
    #order .inquiry .inquiryForm .search .formGroup {}
    #order .inquiry .inquiryForm .search .formGroup label {}
    #order .inquiry .inquiryForm .search .formGroup input {}
    #order .inquiry .inquiryForm .search button {}

    /* 주문 상세 */
    #order .orderDetails {
    padding: 20px 10px;
}
    #order .orderDetails .inner {
}
    #order .orderDetails .title {
    font-size: 24px;
    padding: 0;
}
    #order .orderDetails .subTitle {
    font-size: 18px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
    #order .orderDetails .orderInfo {
    flex-direction: column;
}
    #order .orderDetails .orderNumber {
    margin: 0;
    padding-left: 5px;
}
    #order .orderDetails .orderNumber dl {
    font-size: 16px;
}
    #order .orderDetails .orderNumber dl dt {}
    #order .orderDetails .orderNumber dl dt .date {}
    #order .orderDetails .orderNumber dl dt .number {}
    #order .orderDetails .orderNumber dl dt .number strong {}
    #order .orderDetails .orderNumber dl dd {}
    #order .orderDetails .orderNumber dl dd .status {}
    #order .orderDetails .orderNumber dl dd a {}
    #order .orderDetails .itemArea {}
    #order .orderDetails .itemArea .itemList {
}
    #order .orderDetails .itemArea .itemList li {}
    #order .orderDetails .itemArea .itemList li dl {
    position: relative;
    font-size: 13px;
    flex-wrap: wrap;
    height: 85px;
    padding-left: 90px;
    gap: 0;
}
    #order .orderDetails .itemArea .itemList li dl .photo {
    position: absolute;
    padding: 0;
    width: 80px;
    left: 0;
}
    #order .orderDetails .itemArea .itemList li dl .name {
    font-weight: 600;
    flex: 0 0 100%;
}
    #order .orderDetails .itemArea .itemList li dl .price {}
    #order .orderDetails .itemArea .itemList li dl .quantity {}
    #order .orderDetails .itemArea .itemList li dl .subTotal {}
    #order .orderDetails .itemArea .itemList li .title {
    line-height: normal;
    font-size: 14px;
    height: unset;
    gap: 0;
    padding: 10px 0 10px 80px;
}
    #order .orderDetails .itemArea .itemList li .title .photo {}
    #order .orderDetails .itemArea .itemList li .title .name {}
    #order .orderDetails .itemArea .itemList li .title .price {}
    #order .orderDetails .itemArea .itemList li .title .quantity {}
    #order .orderDetails .itemArea .itemList li .title .subTotal {}
    #order .orderDetails .itemArea .payment {
    font-size: 14px;
    flex-wrap: wrap;
    line-height: 30px;
    padding: 10px 0;
}
    #order .orderDetails .itemArea .payment dt {
    flex: 0 0 25%;
    text-align: center;
}
    #order .orderDetails .itemArea .payment dd {
    flex: 0 0 25%;
}
    #order .orderDetails .itemArea .payment .total {
    font-size: 16px;
    flex: 0 0 50%;
    text-align: center;
}
    #order .orderDetails .shipArea {}
    #order .orderDetails .shipArea .delivery {
    padding-left: 5px;
    font-size: 16px;
}
    #order .orderDetails .shipArea .delivery .name {
    margin-bottom: 5px;
}
    #order .orderDetails .shipArea .delivery .phone {
    margin-bottom: 5px;
}
    #order .orderDetails .shipArea .delivery .address {}
    #order .orderDetails .shipArea .delivery .detailAddr {}
    #order .orderDetails .shipArea .delivery .memo {}


    .select2 {}
    .select2-container--default .select2-selection--single {}
    .select2-container--default .select2-selection--single .select2-selection__placeholder,
    .select2-container--default .select2-selection--single .select2-selection__rendered {}
    .select2-container--default .select2-selection--single .select2-selection__arrow {}
    .select2-container--default .select2-selection--single .select2-selection__rendered {}
}

footer {
    background-color: #f9f9f9;
    position: relative;
    z-index: 10;
}