@charset "UTF-8";
@import './Fonts/NotoSansKR.css'; 

html {
    font-family: 'Noto Sans KR', sans-serif; 
    line-height: 1.15;-webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%; 
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}
body { margin: 0;padding: 0; text-align: left;background-color: #fff; color: #484848; box-sizing: border-box; }
body, p, textarea, input, select, td, th {font-size: 1rem;}
@media (max-width: 767px) {
    body, p, textarea, input, select, td, th {font-size: 0.935rem;}
}
div {box-sizing: border-box;}
ul {padding:0; margin:0;}
ul li {list-style: none;}
ul li:hover {
    transition: all 0.5s ease;
    cursor: pointer !important;
}
a, a:hover, a:focus {
    text-decoration: none;
    color: #484848;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}
.header {
    /* position:fixed; */
    z-index:999;
    padding:0;font-size:16px;
    height: 85px;
    background-color:#fff; 
    border-bottom:1px solid #eaeaea;left: 0;right: 0; 
}
.container{ width: 100%; max-width:1280px; margin:0 auto; }
.header .container {
    display: flex;
    align-items: center;
    height: 84px;
    background-color: #fff;
    color: #242424;
    padding: 0;
    position: relative;
}

.logo {
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img { width:64px;}
.login-area {
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.login-area a { padding: 4px;}
.login-area img { width: 24px;}
.mem-menu {
    position: absolute;
    top: 60px;
    margin-right: -10px;
    width: 120px;
    background-color: #17633d;
    border-radius: 4px;
    padding: 4px;
    display: none;
}
.mem-menu div {
    padding: 4px 10px;
    text-align: center;
    border-radius: 2px;;
}
.mem-menu div a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
.mem-menu div:hover {
    background-color: #0e4e2e;
}
.btn-member:hover + .mem-menu, .mem-menu:hover {
    display: block;
}
.p-menu {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}
.m-menu {
    display: none;
    flex: 1;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.p-menu-item {
    position: relative;
    padding: 10px 25px;
    cursor: pointer;
    color: #242424;
    text-align: center;
    font-size: 1.075rem;
}
@media (max-width: 991px) {
    .p-menu-item {
        padding: 10px 10px;
        font-size: 1rem;
    }
}
.p-submenu {
    position: absolute;
    top: 85px;
    width: 100%;
    min-width: 920px;
    background-color: #17633d;
    padding-left: 60px;
    height: 320px;
    z-index: 100;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: inset 0px 5px 10px rgba(0, 45, 0, 0.6);
}
.p-submenu .p-submenu-area {
    display: flex;
    justify-content: center;
    margin-left: -50px;
}
.p-submenu .submenu {
    text-align: center;
    width: 112px;
}
.submenu {
    display: none;
    padding: 10px 0;
    justify-content: space-around;
    flex-wrap: wrap;
}

.p-submenu a, .submenu a, .menu-item a {
    color: white;
    text-decoration: none;
    padding: 7px 5px;
    display: block;
}
.p-submenu a:hover {
    background-color: #0e4e2e;
    text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 200;
}

/* 모바일 화면에서만 보이게 */
@media (max-width: 768px) {
  .p-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background-color: #17633d;
    z-index: 100;
    padding: 0;
    align-items: flex-start; /* 핵심: 좌측 정렬 */    
  }

  .p-menu.mobile-open .p-menu-item {
    padding: 14px 20px;
    width: 100%;
    color: #fff;
    background-color: #17633d;
    font-size: 1rem;
    border-bottom: 1px solid #0e4e2e;
    font-weight: 500;
    text-align: left; /* 핵심: 텍스트 좌측 정렬 */
    border: none;        /* 밑줄 제거 */
  }

  .p-menu.mobile-open .submenu {
    display: block;
    background-color: #0e4e2e;
    width: 100%;
    padding: 5px 30px 10px 30px;
    box-sizing: border-box;
  }

  .p-menu.mobile-open .submenu a {
    display: block;
    padding: 8px 0;
    color: #fff;
    font-size: 0.95rem;
    text-align: left;
  }

  .p-menu.mobile-open .submenu a:hover {
    background-color: #0c3f2a;
  }
}



.hamburger div {
    width: 24px;
    height: 3px;
    background-color: #242424;
    transition: all 0.3s ease;
}

/* 햄버거 버튼이 X로 변하는 효과 */
.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.table-area {
    max-width: 100%;
    overflow-x: scroll;
}
@media (min-width: 768px) {
    .m-menu { display: none !important;}
}
@media (max-width: 767px) {
    .header {border-bottom: none; position: relative;}
    #main {
        padding-top: 0 !important;
    }
    .header .container {
        justify-content: center;
    }
    .login-area {
    display: block !important;
    color: #fff;
  }

  .mem-menu {
    display: block !important;
  }
    .m-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #17633d;
        padding: 10px 0;
        position: absolute;
        top: 85px;
    }
    .menu-item {
        width: 100%;
        text-align: left;
        padding: 10px 0;
        text-indent: 10px;
        padding-left: 20px;
        font-size: 17px;
        color: #fff;
    }
    .p-submenu, .submenu {
        display: none;
        flex-direction: column;
        margin-left: -20px;
        position: relative;
        top: 10px;
        background-color: #0e4e2e;
        padding-left: 30px;
        font-size: 15px;
    }

    .hamburger {
        display: flex;
    }
}

/* 상품관련 */
#main {
    padding-top: 90px;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    font-size: 1.175rem;
    border-bottom: 1px solid #e8e8e8;
    margin: 30px 0;
}

.breadcrumb {
    list-style: none;
    display: flex;
    padding: 10px 0;
    margin: 0;
    background: none;
}
.breadcrumb li {
    color: #242424;
    font-weight: 500;
    line-height: 2;
}
.breadcrumb .b-header {
    font-size: 14px;
    color: #17633d;
    margin-right: 6px;
}
.breadcrumb .b-header.first {
    margin-left: 20px;
}
.breadcrumb select {
    display: inline-block;
    padding: 0;
    font-size: 1.175rem;
    font-weight: 500;
    line-height: 1.5;
    color: #17633d;
    border: none;
    margin-left: -10px;
}
.breadcrumb select:focus {
    outline: none;
}
@media (max-width: 767px) {
    .breadcrumb-nav {
        margin: 20px 0;
    }
    .breadcrumb select {
        position: relative; top: -1px;
    }
    .breadcrumb-nav, .breadcrumb select {
        font-size: 1.175rem;
    }
}

.p-list {
    position: relative;
    display: inline-block;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 120px;
}

.p-list ul {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

.p-list ul li {
    display: inline-block;
    width: 300px;
    margin: 0 10px;
    cursor: pointer;
    align-items: center;
}

/* 항목이 8개 일 경우 */
@media (min-width: 975px) and (max-width: 1294px) {
    .p-list ul li:last-child {
        margin-right: 330px;
    }
}

.p-list ul li .thumb>img {
    width: 100%;
    height: 100%;
    max-width: 520px;
}

.p-list ul li .poster {
    position: relative;
    height: 100px;
    margin: 0;
    padding: 10px;
    background-color: #fff;
    box-sizing: border-box;
}

.p-list ul li .cont .top {
    display: flex;
    margin-bottom: 14px;
}

.p-list ul li .cont .top p {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.p-list ul li .cont .top p span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #808080;
}

.p-list ul li .cont .top p span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #808080;
}


.p-detail {
    margin-bottom: 200px;
}
.p-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
}

.poster {
    flex: 2;
    max-width: 520px;
}

.poster img {
    width: 100%;
    min-width: 240px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.details {
    flex: 2;
    background-color: #fff;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .poster,.details {
        flex: none; 
        width: 100%; 
        padding: 0;
    }
    .p-list ul li {
        width: 100%;
        margin: 0 20px;
    }
}

.details h1 {
    font-size: 24px;
    margin: 0 0 10px;
}

.details .price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff5733;
    float: right;
}

.details p {
    margin: 10px 0;
}
.details p strong {
    margin: 0 10px 0 0;
}
.icon-attach2 {width: 24px; margin-right: 4px; vertical-align: middle; margin-top: -2px;}
.options,
.quantity {
    margin: 15px 0;
}

.options label,
.quantity label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
}

#quantity-input {width: 60px; display: inline-block;}
.details .p-total {
    float: right;
}

.box_topline { border-top: 1px solid #ddd; padding: 20px 0;}
.box_underline { border-bottom: 1px solid #ddd; padding: 20px 0;}

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.buttons button {
    flex: 1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-lg {padding: 20px; font-size: 1.375rem}

/* footer관련 */
#footer {
  background: #222222;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px; /* 명확한 높이 지정 */
}

#footer .ftWrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 18px 0;
}

#wrapper {
  padding-bottom: 60px; /* footer 높이만큼 여백 추가 */
}
#footer address {font-size: 14px;line-height: 24px;color: #b3b3b3;font-style: normal; text-align: center;}
#footer address .copyright{display: inline-block;font-size: 13px; line-height: 24px; color: #b3b3b3;}

@media (max-width: 767px) {
    #footer address {
        text-align: center;
        letter-spacing: -1px;
        font-size: 13px;
        line-height: 18px;
    }
}

/* 마이페이지 관련 */
.my-list {
    display: flex;
    width: 720px;
    min-height: 480px;
    margin: 60px auto;
    gap: 20px;
}

.my-list .thumb {
    margin-top: 10px;
}

.my-info {
    width: 100%;
    padding: 0 20px;
    background-color: #fff;
}

.my-info h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin: 5px 0;
}
.my-info h6 {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 2px 0;
}
.my-info p {
    padding: 6px 0;
    margin: 4px 0;
}
.my-list .my-info p {
    border-bottom: 1px solid #ddd;
}
input.underline {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1.075rem;
}
.error {
    color: red;
    font-size: 0.75em;
    margin-top: -10px;
}
@media (max-width: 767px) {
    .my-list {
        width: 100%;
        flex-direction: column;
    }
    .my-list .thumb {
        display: flex;
        margin-top: 20px;
        justify-content: center;
    }
    .my-info h3 {
        text-align: center;
    }
}

/* 팝업관련 */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1000;
}
@media (max-width: 767px) {
    .popup {
        width: 360px;
    }
}
.popup.wide {
    width: 100%;
    max-width: 960px;
}

#popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    color: #fff;
    background-color: #17633d;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    justify-content: center;
}
#popup-header h2 {
    margin: 0;
    font-size: 18px;
}
#popup-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 12px; right:20px;
}
#popup-content {
    padding: 20px;
    margin-bottom: 20px;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* 테이블관련 */

.b-list {
    position: relative;
    display: inline-block;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 120px;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border-collapse: collapse;
}

.table th, .table td {
    text-align: center;
    padding: 10px;
    min-height: 48px;
}
.table.table-striped {
  border:none;
  border-top: 2px solid #17633d;
}
.table.table-striped tr.notice td {
    background-color: #f2fbf8;
    border-bottom: 1px solid #adc7ba;
}
.table.table-striped, .table.table-striped td {
  border-bottom: 1px solid #dee2e6;
} 
.table.table-striped th {
  border-bottom: 1px solid #adc7ba;
  background-color: #fff;
  color: #17633d;
  font-weight: 400;
} 
.table-striped tr:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.table-bordered {
    border: none;
    border-top: 2px solid  #17633d;
}
.table-bordered th {
    width: 160px;
}
.table-bordered th, .table-bordered td {
    border-bottom: 1px solid #dee2e6;
    padding: 16px 10px;
}
.table-bordered th {
    background-color: #f7f7f7;
    min-width: 72px;
    font-weight: 500;
}
.table-bordered td {
    text-align: left;
}
.table-bordered.excel th, .table-bordered.excel td {
    border-right: 1px solid #dee2e6;
    text-align: center;
    padding: 12px 10px;
}
.table-bordered.excel th:last-child, .table-bordered.excel td:last-child {
    border-right: none;
}
.table-bordered.excel .text-right {
    text-align: right;
}
.table-bordered .content-area {
    line-height: 1.5;
}
.table-bordered a { margin-right: 10px;}

@media (max-width: 414px) {
    .table {
        max-width: none;
    }
    .table td, .table th {
        word-break: keep-all;
    }
    .table-bordered.excel th, .table-bordered.excel td {
        font-size: 0.735rem;
        padding: 6px 8px;
    }
}
@media (max-width: 767px) {
    .b-list {padding: 0 20px;}
    .table {
        max-width: none;
    }
    .table td, .table th {
        word-break: keep-all;
    }
    .table.table-striped th:nth-child(1), .table.table-striped td:nth-child(1){width: 7%;}
    .table.table-striped th:nth-child(2), .table.table-striped td:nth-child(2){width: 18%;}
    .table.table-striped th:nth-child(3), .table.table-striped td:nth-child(3){width: 75%;}
    .table.table-striped th:nth-child(4), .table.table-striped th:nth-child(5), 
    .table.table-striped td:nth-child(4), .table.table-striped td:nth-child(5) {display: none;}
}
@media (max-width: 1024px) {
    .table td, .table th {
        padding: 0.5rem 0.15rem;
    }
}
.icon-attach {width: 20px; margin-right: 4px; vertical-align: bottom;}


.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 0;
    list-style: none;
    border-radius: .25rem;
    justify-content: center;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #44ab49;
    background-color: #fff;
    border: 1px solid #dee2e6
}

.page-link:focus,.page-link:hover {
    color: #44ab49;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:not([disabled]):not(.disabled) {
    cursor: pointer
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    color: #fff;
    background-color: #44ab49;
    border-color: #44ab49
}

.page-item.disabled .page-link {
    color: #868e96;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}
@media (max-width: 767px) {
    .page-link { font-size: 11px;}
}



/* 일반관련 */
img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
}
.o-list {padding: 0 30px; margin-bottom: 120px;}
.o-details {line-height: 1.5;}
.stitle-order { padding: 10px 0; }
.o-details .m-ver { display: flex; align-items: center;}
.o-details .m-ver.text-right { justify-content: flex-end;}
.o-details img {width: 100%; max-width: 160px; }
.o-text { line-height: 1.5;}
.o-text h3 { margin: 10px 0;}

@media (max-width: 767px) {
    .o-list .table-header {text-align: center;}
    .o-list .table-header .btn {width: 75%;}
    .o-details .box_topline {text-align: center;}
    .o-details .box__topline .text-right {text-align: center !important;}
    .o-details img {width: 100%; max-width: 400px; }
    .o-details .col-md-2.m-ver, .o-details .col-md-2.m-ver.text-right { justify-content: center;}
}

.guide-text {position: relative; display: block; margin: 20px 0;}
.btn-group {display: flex;  gap: 10px; justify-content: center;} 
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-sizing: border-box;
}
.btn-group .btn {min-width: 120px;}
.btn-primary {
    color: #fff;
    background-color: #44ab49;
    border-color: #44ab49
}

.btn-primary:hover {
    color: #fff;
    background-color: #185e4c;
    border-color: #185e4c;
}
.btn-primary.disabled,.btn-primary:disabled {
    background-color: #ccc;
    border-color: #ccc;
    color: #fff;
}

.btn-secondary {
    color: #fff;
    background-color: #185e4c;
    border-color: #185e4c;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #185e4c;
    border-color: #185e4c;
}

.btn-outline-primary {
    color: #44ab49;
    background-color: transparent;
    background-image: none;
    border-color: #44ab49
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #44ab49;
    border-color: #44ab49
}

.btn-outline-primary.focus,.btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5)
}
.btn-outline-secondary {
    color: #868e96;
    background-color: transparent;
    background-image: none;
    border-color: #868e96
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #868e96;
    border-color: #868e96
}


.btn-lg {
    padding: .75rem 1rem;
    font-size: 1.175rem;
    line-height: 1.5;
    border-radius: .375rem;
}
.btn-md{
    padding: .275rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: .275rem;
}
.btn-sm {
    padding: .275rem 1rem;
    font-size: .75rem;
    line-height: 1.5;
    border-radius: .2rem;
}
.btn-area {text-align: center; margin: 10px 0;}
.text-green { color: #4CAF50;}
.text-red {color: #dd2323;}

.mb-show {display: none; }
@media (max-width: 767px) {
    .btn {
        line-height: 1.5;
        border-radius: .5rem;
        font-size: 0.735rem;
    }
    .btn-lg {
        padding: .5rem 1rem;
        font-size: 1.075rem;
        border-radius: .5rem;
    }
    .btn-area.f-left {float: none !important;}
    .mb-show {display: block;}
    .mb-hide {display: none;}
}
.form-control {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 200;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e0e0e0;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .form-control { padding: .375rem .375rem; }
}
.table-header {margin: 5px 0;}
.table-header .form-control {display: inline-block; }
.table-header .form-control, .table-header .btn { margin: 2px 4px;}
.form-sm {padding: 5px; font-size: 0.835rem; max-height: 30px;}
.table-header .bordered {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 4px;
  padding: 0.375rem;
  margin: 2px 2px;
  line-height: 1.5;
}
.table-header .bordered .datepicker { 
  width: 82px;
  border: none;
}
.table-header .btn {padding: .4375rem 2.75rem; position: relative; top: -2px; margin: 4px;}

.reply-area { 
    display: inline-block;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    padding: 15px;
    margin: 20px 0;
    width: 100%;
}
.reply-area .date { margin: 0 5px 10px;}
.reply-area textarea { border: none;}

input[type=checkbox], input[type=radio] {
    position: relative;
    top: 2px;
}
.w5p {
    width: 5% !important;
}
.w10p {
    width: 10% !important;
}
.w25p {
    width: 25% !important;
}
.w50p {
    width: 50% !important;
}
.w75p {
    width: 75% !important;
}
.w80p {
    width: 80% !important;
}
.w95p {
    width: 95% !important;
}
.w100p {
    width: 100% !important;
}
.f-left {
    float: left !important;
}
.f-right {
    float: right !important;
}
.text-center {text-align: center;}
.text-left {text-align: left;}
.text-right {text-align: right;}

.m-t-10 {margin-top: 10px !important;}
.m-t-30 {margin-top: 30px !important;}
.m-b-10 {margin-bottom: 10px !important;}
.m-b-30 {margin-bottom: 30px !important;}
.p-t-10 {padding-top: 10px !important;}

/* 장바구니 관련 */
.list-basket {
    padding: 5px 0;
}
.basket-box, .order-box {
    border: 1px solid #ddd;
    padding: 20px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.basket-box > div  {
    display: inline-block;
}
.order-box .row {
    margin: 0;
}
.order-box .btn {
    width: 100%; 
    padding: 15px;
    border-radius: 40px;
}
.big-price {font-weight: 700; font-size: 1.735rem;}
.box-gray {
    padding: 20px;
    background: #f0f0f0;
    border-radius: 5px;
    margin: 20px 0;
}

.check-area {float: left;  }
.del-basket {position: absolute; right: 10px; }
.p-b-20 {padding-bottom: 20px;}

@media (max-width: 767px) {
    .check-area { min-width: 25px; }
    .info-basket.w95p { width: 85% !important; text-align: center; }
    .del-basket { right: 25px; }
}

.button-group {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: 80px;
    margin: 5px 0;
}
.btn-num {
    font-size: 1rem;
    padding: 2px 5px;
    cursor: pointer;
    border: none;
    width: 20px;
    background-color: #f0f0f0;
}
.btn-num:hover {
    background-color: #e0e0e0;
}
.number-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    font-size: 0.875rem;
    background-color: #ffffff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
/* 탭관련 */
.tabs {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin: 30px 0;
    flex-direction: column;
    box-sizing: border-box;
}
.tabs ul {
    display: flex;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    width: 40%;
}
.tabs li {
    display: flex;
    margin: 0;
    width: 50%;
    justify-content: center;
}
.tabs a {
    text-decoration: none;
    padding: 10px 30px;
    color: black;
    border: none;
    font-size: 1.175rem;
    width: 100%;
}
.tabs .ui-tabs-active a {
    border-bottom: 4px solid #17633d;
    display: inline-block;
}
.tab-content {
    margin: 30px 0;
}
.tab-content .cont {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}
.tab-content .cont img {
    max-width: 900px;
    width: 100%;
}
@media (max-width: 767px) {
    .tabs ul {
        width: 100%; margin: 0 20px;
    }
    .tabs li {
        width: calc(50% - 20px);
    }
    .tabs li a {
        padding: 10px 0;
    }
    .tab-content {
        margin: 20px;
    }
}

/* Login 관련 */
.login-list {
    display: inline-block;
    width: 320px;
    min-height: 480px;
    margin: 100px auto;
}
.login-list input.form-control {
    margin: 10px 0;
}
.login-list input.form-control:focus {
    outline: none;
}
#id-box {
    background: url(../images/icon-p.png) no-repeat center left;
    background-size: 24px 24px;
    padding-left: 40px;
}
#pw-box {
    background: url(../images/icon-l.png) no-repeat center left;
    background-size: 24px 24px;
    padding-left: 40px;
}
.login-list img {
    width: 160px;
    margin-bottom: 30px;
}

/* 영역관련 */
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}
@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.p-submenu {
  display: flex;
}

.p-submenu .submenu {
  display: flex; /* 또는 block */
  flex-direction: column;
}

.tr-total-border {
  border-top: 2px solid #333;
}


.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.tabs li {
  margin: 0 40px;
}

.tabs li button {
  background: none;
  border: none;
  font-size: 24px; /* 👈 폰트 크기 3배 키움 */
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  color: #222;
}

.tabs li button.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px; /* 밑줄도 살짝 두껍게 */
  background-color: #1a774e;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* 모바일 전용 서브메뉴 스타일 */
.submenu.mobile-submenu {
  background-color: #0e4e2e;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;        /* 밑줄 제거 */
  border-bottom: none;          /* 하단선 제거 */
}

.submenu.mobile-submenu a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-size: 0.95rem;
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;        /* 밑줄 제거 */
  border-bottom: none;          /* 하단선 제거 */
}

.submenu.mobile-submenu a:hover {
  background-color: #0c3f2a;
}

.table-search {
    display: flex; width: 25%; justify-content: flex-end; gap: 5px; margin-right: 50px;
}

.table-search span {
    font-size: 14px;
    display: inline-block;
    word-break: keep-all;
    margin: 7px 0 0 20px;
}
@media (max-width: 767px) {
    .group-search {
        flex-direction: column;
        width: 100%;
        justify-content: center;
        margin: 0 auto;
    }
    .table-search {
        width: 75%;
        justify-content: center;
        margin: 0 auto;
        padding-bottom: 10px;
    }
}

.group-search {
    display: flex; width: 75%; justify-content: flex-end; gap: 5px; margin-right: 50px;
}