/* 전체 마이페이지 영역 공통 */
.mypage {
  --mpFieldH: 40px;
}

/* 라디오/체크박스 */
.mypage input[type="radio"],
.mypage input[type="checkbox"] {
  appearance: radio;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
}

.mypage input[type="radio"]:hover,
.mypage input[type="checkbox"]:hover {
  outline: none;
  border-color: #3182f6;
}

/* 상단 유저 컨테이너 */
.mypage .user-container-wrap {
	position:relative;
	width:100vw;
	height:100vh;
	display:flex;
	justify-content:center;
	align-items:center;
	background:rgba(0,0,0,0.8);
	height:224px;
	background:linear-gradient(to right,#26A7DE,#AA94F8,#F5999B,#FFF16A);
}
.mypage .user-container {
	margin:20px auto !important;
	position:relative;
	width:1300px;
	height:144px;
	background:white;
	border-radius:20px;
	padding:28px 30px;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	box-shadow:0 4px 12px rgba(0,0,0,0.08);
}
.mypage .user-info {
	margin-bottom:10px;
	justify-content:space-between;
	align-items:center;
	text-align:center;
	font-size:20px !important;  
	color:#333;
	flex:1 1 100%;
}
.mypage .user-info strong {
  color: #FF7A00;
}
.mypage .user-info .company-id {
	background-color:#fff;
	font-size:14px !important;
	padding:2px 8px;
	border-radius:10px;
	border:1px solid #ccc;
	color:#000;
}
.mypage .user-status-boxes-wrap {
	margin:0 auto;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.mypage .user-status-boxes {
	display:flex;
	gap:144px;
	justify-content:space-between;
}
.mypage .user-status-item {
	display:flex;
	text-align:left;
	color:#555;
}
.mypage .txt-box {
	margin-left:8px;
}
.mypage .user-status-item .value {
	font-weight:600;
	color:#2F3438;
	margin-top:2px;
	font-size:18px !important;
	text-align:left;
}
.mypage .img-wrap {
	width:50px;
	height:50px;
	border-radius:50%;
	background-color:#f7f7f7;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}
.mypage .info-list {
	width:200px;
	color:#333;
}
.mypage .info-item {
	font-size:14px !important;
	display:flex;
	justify-content: center;
	align-items:center;
	padding:8px 30px;
	cursor:pointer;
}
.mypage .info-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.mypage .info-item:hover {
	background-color:#f9f9f9;
}
.mypage .divider {
	height:1px;
	background-color:#e5e5e5;
	margin: 0 16px;
}

/* 탭 */
.mypage .tabs {
	display:flex;
	justify-content:space-around;
	max-width:1300px;
	margin:0 auto;
}
.mypage hr.line-tabs {
	margin:0;
	border:solid #ddd;
	border-width:1px 0 0;
	height:0px;
	opacity:0.25;
}
.mypage .tab {
	padding:16px 16px;
	font-size:16px !important;
	color:#999 !important;
	cursor:pointer;
	position:relative;
}
.mypage .tab.active {
	font-weight:bold;
	color:#2F3438 !important;
}
.mypage .tab.active::after {
	content:"";
	position:absolute;
	bottom:0;
	left:-60%;
	right:0;
	width:220%;
	height:3px;
	background-color:#47517d;
}


.status-list-wrapper {
  border-top: 1px solid #DADFE2;
  border-bottom: 1px solid #DADFE2;
}

/* 상태 리스트 */
.mypage .status-list {
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	margin:0 auto;
	width:1300px;
	padding:24px 60px;
}
.mypage .status-list-modal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 1238px;
  height: 88px;
  padding: 0 0;
  border: 1px solid #ddd;
  margin-bottom: 16px;
}
.mypage .pay-status-item-last {
  margin-right: 100px;
}
.mypage .delivery-status-item-last {
  margin-right: 10px ;
}
.mypage .status-list-pay {
	display:flex;
	justify-content:space-around;
	align-items:center;
	flex-wrap:wrap;
	margin:0 auto;
	width:1300px;
	padding:24px 160px;
}
.mypage .status-item {
	display:flex;
	flex-direction:column;
	align-items:center;
	font-size:13px !important;
	color:#555;
}
.mypage .status-item-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #555;
  width: 12.5%;
  height: 88px;
}
.mypage .status-item-modal.active {
	border: 1px solid #47517d;
	background-color: #E5F4FF;
}
.mypage .status-item img {
	width:32px;
	height:32px;
	margin-bottom:5px;
}
.mypage .status-name {
	margin-bottom:4px;
}
.mypage .status-count {
	font-size:16px !important;
	color:#47517d;
	font-weight: bold;
}

/* 마이페이지 테이블 타이틀 */

.mypage .mypage-table-title {
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	gap:20px;
	max-width:1300px;
	padding:40px 0 20px;
	margin:auto;
}
.mypage .left-section {
	display:flex;
	flex-direction:column;
}
.mypage .title {
	font-weight:bold;
	font-size:28px !important;
	color:#2F3438;
	letter-spacing:-0.04em;
}
.mypage .subtitle {
	font-weight:500;
	font-size:14px !important;
	color:#777;
	/* margin-left:4px; */
	letter-spacing:-0.01em
}
.mypage .status-buttons {
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	font-size:16px !important;
}
.mypage .status-button-active {
	display:inline-flex;
	align-items:center;
	border:1px solid #b3c3ea;
	background:#47517D 0% 0% no-repeat padding-box;
	border-color:#ABB9EF;
	border-radius:20px;
	font-weight:600;
	color:#fff;
	cursor:pointer;
	padding:6px 16px;
}
.mypage .status-button-active .divider {
	width:1px;
	height:12px;
	background-color:#fff;
	margin:0 6px;
}
.mypage .status-button {
	display:inline-flex;
	align-items:center;
	border:1px solid #b3c3ea;
	background:#F4F6FF 0% 0% no-repeat padding-box;
	border-color:#ABB9EF;
	border-radius:20px;
	font-weight:600;
	color:#47517D;
	cursor:pointer;
	padding:6px 14px;
}
.mypage .status-button .count {
	color:#47517d;
	font-weight:bold;
	margin-left:4px;
}
.mypage .status-button .divider {
	width:1px;
	height:12px;
	background-color:#d4d9e3;
	margin:0 6px;
}
.mypage .right-section {
	display:flex;
	gap:10px;
	flex-wrap:wrap;
	font-size:14px !important;
	align-items:center;
}

/* 셀렉트박스 */
.mypage .select-box {
	position:relative;
	width: 110px;
}
.mypage .select-box select {
	width:94%;
	padding:10px 8px 10px 12px;
	border:1px solid #d0d5dc;
	border-radius:8px;
	color:#333;
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	cursor:pointer;
}
.mypage .mp-search-inputs select option {
	cursor:pointer;
}
.mypage .select-box::after {
	content:"▼";
	position:absolute;
	right:22px;
	top:49%;
	transform:translateY(-50%);
	font-size:11px !important;
	color:#aaa;
	pointer-events: none;
}

/* 검색바 */
.mypage .mp-search-bar {
	display:flex;
	align-items: center !important;
	gap:8px;
}
.mypage .mp-search-left {
	display:flex;
	flex-direction:column;
	margin:0 4px 5px 4px;
	cursor:pointer;
}
.mypage .mp-search-inputs {
	display:flex;
	gap:6px;
	cursor:pointer;
}
.mypage .mp-search-inputs input {
	width:160px;
}
.mypage select {
	appearance:none;
	-webkit-appearance:none;
	border:none;
	background:transparent;
	font-size:14px !important;
	padding-right:20px;
	background-repeat:no-repeat;
	background-position:right center;
	background-size:14px;
	color:#333;
}
.mypage input[type="text"] {
	border:none;
	outline:none;
	background:transparent;
	font-size:14px !important;
}
.mypage .mp-search-button {
	display:inline-flex;
	align-items:center;
	gap:4px;
	padding:10px 16px;
	border-radius:6px;
	color:#fff !important;
	background-color:#47517d;
	cursor:pointer;
}
.mypage .mp-search-button svg {
	width:16px;
	height:16px;
	stroke:white;
}

/* 캘린더 */
.mypage .mp-calendar input[type="date"],
.mypage .mp-calendar select,
.mypage .mp-calendar input[type="text"],
.mypage .mp-calendar button {
	padding:10px 12px 10px 12px;
	border:1px solid #DADFE2;
	border-radius:8px;
	cursor: pointer;
}
.mypage .mp-calendar input {
	cursor:pointer;
}
.mypage .mp-calendar input[type="date"]:invalid {
	color:red;
}
.mypage .mp-calendar span {
	margin:0 3px 0 3px;
}

/* 검색 박스 */
.mypage .search-box input[type="text"] {
	width:100%;
	padding:8px 34px 8px 12px;
	border:1px solid #d0d5dc;
	border-radius:8px;
	color:#333;
}
.mypage .search-box input::placeholder {
	color:#bbb;
}
.mypage .search-box .icon {
	position:absolute;
	right:10px;
	top:50%;
	transform:translateY(-50%);
	color:#aaa;
	pointer-events: none;
}

/* 마이페이지 테이블 */
.mypage .mypage-table {
	max-width:1300px;
	margin:auto;
	display:flex;
	flex-direction:column;
	gap:16px;
}

.mypage .order-card {
	display:flex;
  flex-wrap: nowrap;
	align-items:center;
	/* justify-content:space-between; */
	background:#fff;
	border:1px solid #e0e0e0;
	border-radius:12px;
	padding:20px;
}
.mypage .order-card:hover .img-wrap-table{
  border-color: #d9dfe8;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.mypage .order-left {
	display:flex;
	flex-direction:column;
	margin:0 0 0 20px;
}
.mypage .order-id {
	font-weight:bold;
	font-size:15px !important;
	color:#2F3438;
}
.mypage .order-date {
	font-size:13px !important;
	color:#999;
	margin:4px 0;
}
.mypage .badge {
  flex: 0 0 auto;   /* 배지 영역 축소 금지 */
	margin:0 26px 0 26px; 
	font-size:12px !important;
	padding:8px 12px;
	border-radius:20px;
	font-weight:500;
}
.mypage .badge-blue {
	color:#47517d;
	border:1px solid #47517d;
	background-color:#fff;
}
.mypage .badge-black {
	color:#2F3438;
	border:1px solid #2F3438;
	background:#ffffff 0% 0% no-repeat padding-box;
}
.mypage .badge-red {
	color:#F66161;
	border:1px solid #F66161;
	background:#ffffff 0% 0% no-repeat padding-box;
}
.mypage .badge-gray {
  color:#6c7073;
	border:1px solid #6c7073;
	background:#ffffff 0% 0% no-repeat padding-box;
}
.mypage .badge-pulple {
  color:#9400D3;
	border:1px solid #9400D3;
	background:#ffffff 0% 0% no-repeat padding-box;
}
.mypage .badge-orange {
  color:#FF4500;
	border:1px solid #FF4500;
	background:#ffffff 0% 0% no-repeat padding-box;
}
.mypage .badge-green {
  color:#2E8B57;
  border:1px solid #2E8B57;
  background:#fff;
}
.mypage .badge-teal {
  color:#008B8B;
  border:1px solid #008B8B;
  background:#fff;
}
.mypage .badge-brown {
  color:#8B4513;
  border:1px solid #8B4513;
  background:#fff;
}

.mypage .order-center {
	display:flex;
	align-items:center;
	gap:16px;
  flex: 1 1 auto;
  min-width: 0; /* 중요: 텍스트 줄어들게 */
}
.mypage .img-wrap-table {
	width:80px;
	height:80px;
	border-radius:6px;
	background-color:#f7f7f7;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}
.mypage .product-info {
	font-size:14px !important;
	color:#333;
  min-width:0;
}
.mypage .today {
	color:#e53935;
	font-weight:bold;
	margin-bottom:2px;
}
.mypage .product-name {
	color:#2F3438;
	font-size:16px !important;
	font-weight:bold;
	margin-bottom:2px;
}
.mypage .product-detail {
	color:#777;
}
.mypage .order-right {
	display:inline-block;
	text-align:right;
	min-width:120px;
	line-height:1.2;
	margin:0 20px 0 6px;
}




.mypage .price {
  min-width: 120px;
  text-align: center;
	font-size:20px !important;
	font-weight:bold;
	margin-bottom:4px;
	color:#2F3438;
}
.mypage .point {
	font-size:12px !important;
	color:#999;
	text-align:right;
}
.mypage .btn-group {
	flex-direction:column;
	margin-left:30px;
	display:flex;
	gap:6px;
}
.mypage .btn {
	font-size:14px !important;
	padding:6px 6px;
	border-radius:4px !important;
	border:1px solid #ccc;
	background-color:#fff;
	cursor:pointer;
}
.mypage .btn-primary {
	background-color:#47517d;
	color:#fff;
	border-color:#47517d;
	border-radius:4px !important;
}
.mypage .spec {
	display:flex;
	justify-content:center;
}
.mypage .icon-lines-box {
	margin:3px 4px 0 0;
	width:12px;
	height:16px;
	border:2px solid #999;
	border-radius:4px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.mypage .icon-lines {
	display:flex;
	flex-direction:column;
	gap:2px;
}
.mypage .icon-lines span {
	width:4px;
	height:1px;
	background-color:#555;
	border-radius:2px;
}

/* 페이지네이션 */
.mypage .pagination-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 50px 0 160px 0;
}
.mypage .pagination-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #f7f7f7;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #555;
	cursor: pointer;
}
.mypage .pagination-btn p {
	margin-bottom: 5px;
}
.mypage .pagination-btn.short {
	width: 24px;
	height: 24px;
	font-size: 12px;
}
.mypage .pagination-btn.short p {
	margin-bottom: 3px;
}
.mypage .pagination-btn:hover {
	background-color: #e0e0e0;
}
.mypage .page-container {
	display: flex;
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 4px 30px;
	gap: 10px;
}
.mypage .page-container:has(.page:only-child) {
  padding: 0;
}
.mypage .page {
	width: 32px;
	height: 32px;
	border-radius: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s;
}
.mypage .page:hover {
	color: #47517d;
}
.mypage .page.active {
	background-color: #47517d;
	color: white;
	font-weight: bold;
}

/* 결제 테이블 */
.mypage .mp-pay-table-container {
	display:flex;
	justify-content:center;
}
.mypage .mp-pay-table {
	width:1300px;
}
.mypage .mp-pay-table table {
	border-collapse:collapse;
	width:100%;
}
.mypage .mp-pay-table table {
	border-top:1px solid #2F3438;
}
.mypage .mp-pay-table table .thread {
	margin:20px 20px;
}
.mypage .mp-pay-table th,
.mypage .mp-pay-table td {
	border-bottom:1px solid #ddd;
	text-align:center;
	padding:10px;
}
.mypage .mp-pay-table .mp-order-info {
	display:flex;
	align-items:center;
	gap:10px;
	text-align:left;
}
.mypage .mp-pay-table .mp-order-info img {
	width:50px;
	height:auto;
}
.mypage .mp-pay-table .mp-gray-text {
	color:gray;
	font-size:0.85em;
}
.mypage .mp-pay-table .mp-status-complete {
	color:black;
}
.mypage .mp-pay-table .mp-status-complete-red {
	color:#F66161;
}
.mypage .mp-pay-table .mp-status-merged {
	color:red;
}
.mypage .mp-pay-table table {
	border-collapse:collapse;
	width:100%;
	table-layout:fixed;
}
/* 컬럼폭 */
.mypage .mp-pay-table th:nth-child(1),
.mypage .mp-pay-table td:nth-child(1) {
	width: 5%;
}
.mypage .mp-pay-table th:nth-child(2), 
.mypage .mp-pay-table td:nth-child(2) {
	width: 15%;
}
.mypage .mp-pay-table th:nth-child(3),
.mypage .mp-pay-table td:nth-child(3) {
	width: 46%;
}
.mypage .mp-pay-table th:nth-child(4),
.mypage .mp-pay-table td:nth-child(4) {
	width: 10%;
}
.mypage .mp-pay-table th:nth-child(5),
.mypage .mp-pay-table td:nth-child(5) {
	width: 10%;
}
.mypage .mp-pay-table th:nth-child(6),
.mypage .mp-pay-table td:nth-child(6) {
	width: 10%;
}
.mypage .mp-pay-table th:nth-child(7),
.mypage .mp-pay-table td:nth-child(7) {
	width: 10%;
}

/* 쿠폰 테이블 */
.mypage .mp-coupons-table th:nth-child(1),
.mypage .mp-coupons-table td:nth-child(1) {
	width: 6%;
}
.mypage .mp-coupons-table th:nth-child(2),
.mypage .mp-coupons-table td:nth-child(2) {
	width: 12%;
}
.mypage .mp-coupons-table th:nth-child(3),
.mypage .mp-coupons-table td:nth-child(3) {
	width: 12%;
}
.mypage .mp-coupons-table th:nth-child(4),
.mypage .mp-coupons-table td:nth-child(4) {
	width: 12%;
}
.mypage .mp-coupons-table th:nth-child(5),
.mypage .mp-coupons-table td:nth-child(5) {
	width: 20%;
}
.mypage .mp-coupons-table th:nth-child(6),
.mypage .mp-coupons-table td:nth-child(6) {
	width: 20%;
}
.mypage .mp-coupons-table th:nth-child(7),
.mypage .mp-coupons-table td:nth-child(7) {
	width: 10%;
}
.mypage .mp-coupons-table .point-plus {
	font:22px bold;
	text-align:center;
}
.mypage .mp-coupons-table .blue {
	color:#47517d;
	background-color:transparent !important;
	border-color:transparent !important;
}
.mypage .mp-coupons-table .red {
	color:#f66161;
	background-color:transparent !important;
	border-color:transparent !important;
}
.mypage .point-symbol-img {
	width:24px;
	height:24px;
	object-fit:contain;
	margin-bottom:7px;
	vertical-align:middle;
}

/* 문의/지원 테이블 */
.mypage .mp-support-table th:nth-child(1),
.mypage .mp-support-table td:nth-child(1) {
	width: 6%;
}
.mypage .mp-support-table th:nth-child(2),
.mypage .mp-support-table td:nth-child(2) {
	width: 12%;
}
.mypage .mp-support-table th:nth-child(3),
.mypage .mp-support-table td:nth-child(3) {
	width: 12%;
}
.mypage .mp-support-table th:nth-child(4),
.mypage .mp-support-table td:nth-child(4) {
	width: 30%;
}
.mypage .mp-support-table th:nth-child(5),
.mypage .mp-support-table td:nth-child(5) {
	width: 12%;
}
.mypage .mp-support-table th:nth-child(6),
.mypage .mp-support-table td:nth-child(6) {
	width: 12%;
}
.mypage .mp-support-table th:nth-child(7),
.mypage .mp-support-table td:nth-child(7) {
	width: 12%;
}
.mypage .mp-support-table .answer-red {
	font-weight:bold;
	color: #F66161;
}
.mypage .mp-support-table .urgent-answer-red {
	display:inline-flex;
	align-items:center;
	gap:4px;
	padding:6px 10px;
	border:1px solid #F66161;
	background-color:#fff;
	border-radius:6px;
	cursor:pointer;
}
.mypage .mp-support-table .urgent-answer-red span {
	color:#f66161;
}
.mypage .mp-support-table .answer-blue {
	font-weight:bold;
	color: #47517d;
}
.mypage .mp-support-table .urgent-answer {
	display:inline-flex;
	align-items:center;
	gap:4px;
	padding:6px 10px;
	border:1px solid #DADFE2;
	background-color:#fff;
	border-radius:6px;
	cursor:pointer;
}
.mypage .mp-support-table .urgent-answer span {
	color: #2F3438;
}

/* 등급/혜택 */
.mypage .mp-benefits-grade-container {
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	gap:18px;
	width:1300px;
	margin:0 auto;
	letter-spacing:-0.03em
}
.mypage .mp-benefits-grade-container .grade-box {
	width:170px;
	background:#fff;
	box-shadow:0 0 5px rgba(0,0,0,0.1);
	border-radius:8px;
	overflow:hidden;
	text-align:center;
}
.mypage .mp-benefits-grade-container .grade-header {
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	color:#fff;
	height:46px;
	width:100%;
	font-size:20px;
	font-weight:bold;
	letter-spacing:-0.03em
}
.mypage .mp-benefits-grade-container .grade-content {
	padding: 20px 10px;
}
.mypage .mp-benefits-grade-container .grade-box img.icon {
	margin:16px 0;
	border-radius:50%;
	object-fit:cover;
}
.mypage .mp-benefits-grade-container .grade-box h3 {
	font-size:20px;
	font-weight:bold;
	margin:4px 0 2px;
}
.mypage .mp-benefits-grade-container .grade-box small {
	display:block;
	font-size:14px;
	color:#555;
}
.mypage .mp-benefits-grade-container .grade-box hr {
	margin:20px 0;
	border:none;
	border-top: 1px solid #e9eaea;
}
.mypage .mp-benefits-grade-container .grade-box .benefit {
	color:#2F3438;
}
.mypage .mp-benefits-grade-container .grade-box .highlight {
	font-size:20px;
	font-weight:bold;
}

/* 등급별 색 */
.mypage .mp-benefits-grade-container .welcome .grade-header {
	background:#ff9000;
}
.mypage .mp-benefits-grade-container .silver .grade-header {
	background:#777;
}
.mypage .mp-benefits-grade-container .family .grade-header {
	background:#3b88f5;
}
.mypage .mp-benefits-grade-container .gold .grade-header {
	background:#ffc107;
}
.mypage .mp-benefits-grade-container .diamond .grade-header {
	background:#00c6c6;
}
.mypage .mp-benefits-grade-container .vip .grade-header {
	background:#ff5588;
}
.mypage .mp-benefits-grade-container .vvip .grade-header {
	background: #223366;
}

/* 혜택 공지 */
.mypage .mp-benefits-notice-box {
	width:1300px;
	margin:30px auto 120px;
	color:#2F3438;
}
.mypage .mp-benefits-notice-box .notice-title {
	font-weight:bold;
	margin-bottom:10px;
}
.mypage .mp-benefits-notice-box .notice-title img {
	margin-right:6px;
}
.mypage .mp-benefits-notice-box .notice-list {
	margin:0;
	width:1300px;
	padding-left:20px;
	background-color:#f7f7f7;
	border-radius:5px;
	padding:20px 25px;
	line-height:1.2;
}
.mypage .notice-list li::before {
	content:"•";
	position:relative;
	right:4px;
	color:#555;
}
.mypage .mp-benefits-notice-box .notice-list li {
	margin-bottom:5px;
	border-radius: 5px;
}

/* 회원정보 수정 */
.mypage .edit-member-container {
	width:1300px;
	margin:0 auto 100px;
	border-top:1px solid #2F3438;
}
.mypage .edit-member-container form {
	padding:10px 10px;
}
.mypage .edit-member-container .form-row {
	display:flex;
	align-items:center;
	margin:16px 0 16px;
}
.mypage .edit-member-container hr {
	margin:0;
	border:solid #ddd;
	border-width:1px 0 0;
	height:0px;
}
.mypage .edit-member-container .form-row-space {
	display:flex;
	align-items:center;
	margin-left:12px;
}
.mypage .form-row-address2 {
	margin-top:-8px !important;
}
.mypage .edit-member-container .form-row label {
	width: 130px !important;
  display: inline-block;
  font-size:14px !important;
}
.mypage .edit-member-container .form-row .mp-withdrawal-checkbox-grid label {
  width: 160px !important;
  margin: 8px 0;
}
.mypage .edit-member-container .form-row .mp-withdrawal-textarea-box textarea {
  width: 1000px;
  height: 120px;
  padding: 12px;
  resize: none;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}
.mypage .edit-member-container .form-row input[type="text"],
.mypage .edit-member-container .form-row input[type="password"],
.mypage .edit-member-container .form-row input[type="number"],
.mypage .edit-member-container .form-row input[type="email"] {
	padding:7px 9px ;
	border:1px solid #DADFE2;
	border-radius:4px;
	font-size:13px;
	color:#2F3438;
}
.mypage .medium-input-space {
	margin-right:1%;
}
.mypage .edit-member-container .readonly {
	background-color:#f7f7f7;
}
.mypage .edit-member-container .inline {
	display:flex;
	gap:12px;
	align-items:center;
}
.mypage .edit-member-container .btn-change {
	padding:7px 12px;
	border-radius:4px;
	cursor:pointer;
	white-space:nowrap;
	color: #fff !important;
  background-color: #47517D;
}
.mypage .edit-member-container .checkbox-group,
.mypage .edit-member-container .radio-group {
	display:flex;
	gap:12px;
	align-items:center;
}
.mypage .edit-member-container .checkbox-group label,
.mypage .edit-member-container .radio-group label {
	font-weight:normal;
}
.mypage .edit-member-container .checkbox-group label:hover {
	display:inline-block;
}
.mypage .edit-member-container .btn-group-editMember {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:16px;
	margin-top:36px;
}
.mypage .edit-member-container .btn {
	padding:12px 24px;
	border-radius:4px;
	cursor:pointer;
	width:160px;
}
.mypage .edit-member-container .btn-cancel {
	font-size:16px;
}
.mypage .edit-member-container .btn-submit {
	background-color:#3182f6;
	color:#fff;
	font-size:16px;
}
.mypage .editMember-number {
	margin-left:64px;
}
.mypage .btn-submit {
	border: none;
}
.mypage .left-section-editMember {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
}
.mypage .btn-withdraw {
  margin: 16px 0 0 900px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.mypage .btn-withdraw:hover {
  background-color: #f2f2f2;
}
.mypage .edit-member-container .btn-submit-red {
  background-color: #F66161;
  border: 1px solid #F66161;
  color: #fff;
  font-size: 16px;
}

/* date input */
.mypage .mp-calendar input[type="date"] {
  padding: 10px 30px 10px 12px;
  border: 1px solid #DADFE2;
  border-radius: 8px;
  cursor: pointer;
  width: 150px;
  background: transparent;
  position: relative;
  z-index: 1;
  display: block;
  opacity: 1;
}
.mypage .date-input-wrapper {
  position: relative;
  display: inline-block;
}

/* 주문 모달 레이어 */
.mypage .mp-order-modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9995;
  background: rgba(0, 0, 0, 0.8);
  color: #2F3438;
  letter-spacing : -0.01em;
}
.mypage .mp-order-modal {
  position: relative;
  width: 1310px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  background-color: #fff;
}
.mypage .mp-orderM-scroll-wrap {
  position: relative;
  width: 1310px;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  background-color: #fff;
  overflow-y: scroll;
}
.mypage .mp-orderM-scroll-wrap::-webkit-scrollbar{
  width: 24px;
}
.mypage .mp-orderM-scroll-wrap::-webkit-scrollbar-thumb{
  background-color: #47517d;
  border-radius: 12px; 
  border: 8px solid #fff;
}
.mypage .mp-orderM-scroll-wrap::-webkit-scrollbar-track{
  background-color: rgba(0,0,0,0);
}
.mypage .mp-orderM-summary-wrap {
  padding: 36px 24px 0px 24px;
}
.mypage .mp-orderM-summary {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 8px;
  width: 1038px;
  margin: 0 auto;
  letter-spacing : -0.01em;
}
.mypage .mp-orderM-summary-right {
  position: absolute;
  right: 16px;
  display: flex;
  align-items: center;
}
.mypage .mp-orderM-summary-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.mypage .mp-orderM-textArea { 
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage .mp-orderM-check-icon {
  width: 20px;
  height: 20px;
  background-color: #47517d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px !important;
}
.mypage .mp-orderM-amount-highlight {
  color: #47517d;
  font-weight: bold;
  font-size: 26px !important;
  margin: 0 8px 4px 8px;
  letter-spacing: -0.02em;
}
.mypage .mp-orderM-divider {
  border-left: 1px solid #ccc;
  height: 16px;
  margin: 0 12px;
}
.mypage .mp-orderM-title {
  font-weight: 600;
  font-size: 18px !important;
}
.mypage .mp-orderM-summary-details {
  font-size: 14px !important;
  color: #777;
}
.mypage .mp-orderM-header {
  border-radius: 12px 12px 0 0;
  background-color: #47517d;
  color: white;
  font-weight: bold;
  font-size: 20px !important;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.mypage .mp-orderM-closeBtn {
  background: none;
  color: white;
  font-size: 20px !important;
  border: none;
  cursor: pointer;
}
.mypage .mp-orderM-section-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  width: 1038px;
  color: #999;
  opacity:0.25; 
}
.mypage .mp-orderM-section {
  padding: 36px 24px 36px 24px;
}
.mypage .mp-orderM-section:first-child {
  padding: 36px 24px 0px 24px;
  border-top: 1px solid #ddd;
}
.mypage .mp-orderM-section:last-child {
  padding: 36px 24px 46px 24px;
}
.mypage .mp-orderM-number {
  font-size: 20px !important;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2F3438;
}
.mypage .mp-orderM-img {
  margin-bottom: 5px;
}
.mypage .mp-orderM-number span {
  font-size: 14px !important;
  font-weight: normal;
  color: #777;
}
.mypage .mp-orderM-content {
  font-size: 14px !important;
  color: #2F3438;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 12px 0;
}
.mypage .mp-orderM-content span {
  font-weight: normal;
  color: #2F3438;
}

/* 모달 내부 테이블 */
.mypage .mp-order-info-table-modal {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px !important;
  border-top: 1px solid #2F3438;
}
.mypage .mp-order-info-table-modal th,
.mypage .mp-order-info-table-modal td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.mypage .mp-order-info-table-modal th {
  width: 140px;
  background: #f7f7f7;
  text-align: left;
  font-weight: 500;
  color: #2F3438;
}
.mypage .mp-order-info-table-modal td {
  width: 379px;
  background: #fff;
  text-align: left;
  font-weight: 500;
  color: #2F3438;
}
.mypage .mp-order-sub-label {
  color: #777;
  margin-left: 8px;
}
.mypage .mp-order-addresses {
  display: flex;
  padding: 30px 24px 36px 24px;
  gap: 24px;
  text-align: left;
}
.mypage .mp-order-address {
  width: 50%;
}
.mypage .mp-orderM-input-cell select {
  width: 120px;
  padding: 8px 30px 8px 10px;
  font-size: 14px !important;
  text-align-last: left;
  border: 1px solid #ccc;
  border-radius: 6px;
  appearance: none;
  background: white url('data:image/svg+xml;utf8,<svg fill="gray" height="10" viewBox="0 0 24 24" width="10" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
  background-size: 10px;
}
.mypage .mp-orderM-input-cell select:focus {
  outline: none;
  border-color: #47517d;
}
.mypage .mp-order-address h4 {
  margin-bottom: 12px;
  font-size: 20px !important;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mypage .mp-order-sender {
  margin-top: 15px;  
}
.mypage .mp-order-spaceBot {
  margin-top: 15px;
}
.mypage .mp-order-address-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px !important;
  text-align: left;
  border-top: 1px solid #000000;
}
.mypage .mp-order-address-table th {
  width: 140px ;
  background: #f7f7f7;
  text-align: left;
  font-weight: 500;
  color: #2F3438;
}
.mypage .mp-order-address-table td {
  width: 377px;
  padding: 10px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.mypage .mp-order-address-table th,
.mypage .mp-order-address-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.mypage .mp-order-spec-wrap {
  display: flex;
  align-items: center;
  justify-content: left;
}
.mypage .mp-orderM-array {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage .mp-orderM-strong {
  color: #47517d;
  font-size: 18px !important;
}
.mypage .mp-orderM-input-cell .btn,
.mypage .mp-orderM-summary .btn {
  font-size: 14px !important;
  padding: 6px 10px;
  border-radius: 4px !important;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  margin-left: 12px;
}
.mypage .mp-orderM-input-cell .icon-lines-box {
  width: 12px;
  height: 16px;
  border: 2px solid #999;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mypage .mp-orderM-input-cell .icon-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mypage .mp-orderM-input-cell .icon-lines span {
  width: 4px;
  height: 1px;
  background-color: #555;
  border-radius: 2px;
}

/* 주문 취소 모달 */
.mypage .mp-orderMC-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9997;
  background: rgba(0, 0, 0, 0.8);
  color: #2F3438;
  letter-spacing : -0.01em
}
.mypage .mp-orderMC {
  position: relative;
  width: 460px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  background-color: #fff !important;
}
.mypage .mp-orderMC-header {
  border-radius: 12px 12px 0 0;
  background-color: #47517d;
  color: white;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.mypage .mp-orderMC-header h4 {
  font-size: 16px;
  margin: 3px 0 0 0;
}
.mypage .mp-orderMC-close-btn {
  background: none;
  border: none;
  font-size: 18px !important;
  color: white;
  cursor: pointer;
}
.mypage .mp-orderMC-body {
  padding: 24px;
  text-align: center;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
}
.mypage .mp-orderMC-body h3 {
  margin: 0;
  font-size: 20px !important;
  font-weight: bold;
}
.mypage .mp-orderMC-body p {
  margin-top: 2px;
  font-size: 13px !important;
  color: #666;
}
.mypage .mp-orderMC-reason-list {
  background-color: #fafafa;
  padding: 24px;
  margin: 16px 0;
  border: 1px solid #eee;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 12px;
  font-size: 14px !important;
  text-align: left;
}
.mypage .mp-orderMC-reason-list input[type="text"] {
  width:100%;
  grid-column: span 3;
  padding: 8px;
  font-size: 13px !important;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.mypage .mp-orderMC-footer {
  display: flex;
  justify-content: center;
  gap: 0px;
  margin-bottom: 16px;
}
.mypage .mp-orderMC .btn {
  padding: 8px 18px;
  font-size: 14px !important;
  border-radius: 4px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.mypage .mp-orderMC-btn-cancel {
  background-color: white;
}
.mypage .mp-orderMC-btn-confirm {
  background-color: #f65a5a;
  border-color: #f65a5a;
  color: white;
}
.mypage .mp-orderMC-btn-confirm:hover {
  background-color: #e24c4c;
}
.mypage .mp-orderMC-text {
  margin-top: 8px;
}
.mypage .mp-status-complete img {
  width: 22px;
  height: 22px;
}
.mypage .mp-status-complete-img-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid #ccc;
  background-color: white;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
}
.mypage .mp-status-complete-img-btn img {
  width: 18px; 
  height: 18px;
  object-fit: contain;
}

/* 결제/환불 테이블 폭 */
.mypage .mp-pay-refund-table th:nth-child(1),
.mypage .mp-pay-refund-table td:nth-child(1) { width: 5%; }
.mypage .mp-pay-refund-table th:nth-child(2),
.mypage .mp-pay-refund-table td:nth-child(2) { width: 20%; }
.mypage .mp-pay-refund-table th:nth-child(3),
.mypage .mp-pay-refund-table td:nth-child(3) { width: 15%; }
.mypage .mp-pay-refund-table th:nth-child(4),
.mypage .mp-pay-refund-table td:nth-child(4) { width: 20%; }
.mypage .mp-pay-refund-table th:nth-child(5),
.mypage .mp-pay-refund-table td:nth-child(5) { width: 10%; }
.mypage .mp-pay-refund-table th:nth-child(6),
.mypage .mp-pay-refund-table td:nth-child(6) { width: 20%; }

.mypage .mp-status-btn-blue {
  gap: 4px;
  padding: 6px 18px;
  color: #fff;
  background-color:  #47517d;
  border: 1px solid  #47517d;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 4px;
}
.mypage .mp-status-btn {
  gap: 4px;
  padding: 6px 18px;
  color: #333;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
}
.mypage .pagination-section {
  display: flex;
  position: relative;
  align-items: center;
  margin: 0 auto;
  gap: 30px;
  width: 1300px;
}
.mypage .mp-pay-botRightBtn-container {
  position: absolute;
  right: 0px;
  display: flex;
  align-items: center;
  margin: 50px 0 160px 0;
  gap: 6px;
}
.mypage .mp-pay-botRightBtn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid #DADFE2;
  background-color: #47517D;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

/* 결제 모달 */
.mypage .mp-payM-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 901;
  background: rgba(0, 0, 0, 0.8);
}
.mypage .mp-payM {
  display: inline-block;
  text-align: left;
  margin-top: -40px;
}
.mypage .mp-payM-scroll {
  width: 380px;
  padding: 28px 40px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 16px 16px;
}
.mypage .mp-payM-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #47517d;
  color: white;
  font-weight: bold;
  padding: 12px 16px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.mypage .mp-payM-scroll-p {
  font-weight: 400;
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}
.mypage .mp-payM-scroll-divider {
  border-top: 1px solid #ddd;
  margin: 16px 0;
}
.mypage .mp-payM-header span {
  font-size: 20px;
  margin-left: 12px;
}
.mypage .mp-payM-closeW {
  right: 16px;
  top: 12px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  border: none;
  background: none;
}
.mypage .mp-payM-scroll::-webkit-scrollbar {
  width: 24px;
}
.mypage .mp-payM-scroll::-webkit-scrollbar-thumb {
  background-color: #47517d;
  border-radius: 24px;
  border: 8px solid #fff;
}
.mypage .mp-payM-scroll::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}
.mypage .mp-payM .mp-payM-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  color: #888;
  cursor: pointer;
}
.mypage .mp-payM .mp-payM-subtitle {
  font-size: 13px;
  color: #888;
  margin: 24px 0 1px 2px;
}
.mypage .mp-payM h2 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.24;
  letter-spacing: -0.04em;
}
.mypage .mp-payM h2 .mp-payM-highlight {
  color: #47517d;
}
.mypage .mp-payM-btn-container {
  display: flex;
  align-items: center;
  margin-top: 16px;
  width: 100%;
}
.mypage .mp-payM-btn-container-first {
  margin-top: 0px;
}
.mypage .mp-payM-btn-container label {
  display: block;
  color: #2F3438;
  font-size: 14px;
  font-weight: 500;
  width: 22%;
}
.mypage .mp-payM-option label {
  margin-top: 30px;
}
.mypage .mp-payM-option-container label {
  margin: 0 auto;
}
.mypage .mp-payM-input-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.mypage .mp-payM-input-row input {
  flex: 1;
}
.mypage .mp-payM-btn-bot-container {
  display: flex;
  gap: 8px;
}
.mypage .mp-payM-btn {
  margin-top: 28px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.mypage .mp-payM-btn-enabled {
  border: 1px solid #2F3438;
  background-color: #fff;
  color: #2F3438;
}
.mypage .mp-payM-btn-active {
  border: 1px solid #47517d;
  background-color: #47517d;
  color: white;
}
.mypage input[type="text"],
.mypage input[type="password"],
.mypage input[type="number"],
.mypage select {
  color: #2F3438;
  width: 230px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
}
.mypage select {
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="gray" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px;
  cursor: pointer;
}
.mypage .mp-payM-btn-check {
  padding: 14px 20px;
  background-color: #47517d;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}
.mypage .mp-payM-input-row-spacing {
  margin-top: 10px;
}
.mypage .mp-payM-btn-join {
  background-color: #47517d;
  color: white;
}
.mypage .mp-payM-btn-corp {
  background-color: #1b2a38;
  color: white;
}
.mypage .mp-payM-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 25px 0 10px;
}
.mypage .mp-payM-divider::before,
.mypage .mp-payM-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ddd;
}
.mypage .mp-payM-divider:not(:empty)::before {
  margin-right: .75em;
}
.mypage .mp-payM-divider:not(:empty)::after {
  margin-left: .75em;
}
.mypage .mp-payM-btn-kakao {
  background-color: #ffe812;
  color: #3c1e1e;
}
.mypage .mp-payM-btn-naver {
  margin: 0 0 30px 0;
  background-color: #03c75a;
  color: white;
}

/* 약관 체크 */
.mypage .mp-payM-agreement-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.mypage .mp-payM-agreement-box {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  width: 320px;
}
.mypage .mp-payM-agreement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}
.mypage .mp-payM-agreement-left {
  display: flex;
  align-items: center;
}
.mypage .mp-payM-custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  margin-right: 6px;
  flex-shrink: 0;
}
.mypage input[type="checkbox"]:checked + .mp-payM-custom-checkbox {
  background-color: #3f51b5;
}
.mypage input[type="checkbox"]:checked + .mp-payM-custom-checkbox::before {
  content: '✔';
}
.mypage .mp-payM-bold {
  font-weight: 700;
  font-size: 16px;
}
.mypage .mp-payM-view-link {
  font-size: 13px;
  color: #ccc;
  margin-left: 16px;
  cursor: pointer;
  text-decoration: underline;
}
.mypage .mp-payM-view-link:hover {
  color: #3f51b5;
  text-decoration: underline;
}

/* 회사회원 */
.mypage .mp-payM-divider-company {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 28px 0 0 0;
}
.mypage .mp-payM-divider-company::before,
.mypage .mp-payM-divider-company::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ddd;
}
.mypage .mp-payM-divider-company:not(:empty)::before {
  margin-right: .75em;
}
.mypage .mp-payM-divider-company:not(:empty)::after {
  margin-left: .75em;
}

/* 마이페이지 공지 */
.mypage .mp-notice-box {
  width: 1300px;
  margin: 30px auto 30px;
  color: #2F3438;
}
.mypage .mp-notice-box .notice-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.mypage .mp-notice-box .notice-title img {
  margin-right: 6px;
}
.mypage .mp-notice-box .notice-list {
  font-size: 14px !important;
  margin: 0;
  width: 1300px;
  padding-left: 20px;
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 20px 25px;
  line-height: 1.2;
}
.mypage .mp-notice-box .notice-list li::before {
  content: "•";
  position: relative;
  right: 4px;
  color: #555;
}
.mypage .mp-notice-box .notice-list li {
  margin-bottom: 5px;
  border-radius: 5px;
}
.mypage .mp-notice-box .notice-list span {
  color: #F66161;
  font-weight: bold;
}

/* 배송지 테이블 */
.mypage .mp-delivery-address-table th:nth-child(1),
.mypage .mp-delivery-address-table td:nth-child(1) {
  width: 8%;
}
.mypage .mp-delivery-address-table th:nth-child(2),
.mypage .mp-delivery-address-table td:nth-child(2) {
  width: 8%;
}
.mypage .mp-delivery-address-table th:nth-child(3),
.mypage .mp-delivery-address-table td:nth-child(3) {
  width: 12%;
}
.mypage .mp-delivery-address-table th:nth-child(4),
.mypage .mp-delivery-address-table td:nth-child(4) {
  width: 20%;
}
.mypage .mp-delivery-address-table th:nth-child(5),
.mypage .mp-delivery-address-table td:nth-child(5) {
  width: 16%;
}
.mypage .mp-delivery-address-table th:nth-child(6),
.mypage .mp-delivery-address-table td:nth-child(6) {
  width: 8%;
}
.mypage .mp-delivery-address-table th:nth-child(7),
.mypage .mp-delivery-address-table td:nth-child(7) {
  width: 30%;
}

/* 하단 버튼 */
.mypage .mp-botRightBtn-container {
  position: absolute;
  right: 0px;
  display: flex;
  align-items: center;
  margin: 50px 0 160px 0;
  gap: 8px;
}
.mypage .mp-botRightBtn-enabled {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: #47517D;
  border: 1px solid #47517D;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.mypage .mp-botRightBtn-active {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: #fff;
  border: 1px solid #DADFE2;
  background-color: #47517D;
  border-radius: 6px;
  cursor: pointer;
}

/* 배송 모달 */
.mypage .mp-deliveryM-address-wrap {
  margin: 16px 0 0 0;
}
.mypage .mp-deliveryM-address-wrap .mp-payM-btn-container {
  margin-top: 8px;
}
.mypage .default-address {
  margin-left: 22%;
  width: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.mypage .mp-deliveryM-address-wrap input {
  width: 160px;
}
.mypage .default-address input[type="checkbox"] {
  display: block;
  width: 16px;
}
.mypage .mp-deliveryM-address-btn input {
  margin-left: 22%;
  width: 140px;
}
.mypage .mp-text500-blue {
  color: #47517d;
  font-weight: 500;
}
.mypage .mp-text500-gray {
  color: #777777;
  font-weight: 500;
}
.mypage .notice-title-answer {
  font-size: 20px !important;
  color: #3182f6;
}
.mypage .mp-upload-btn {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #ccc;
  color: #2f3438;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

/* 후기 작성 */
.mypage .mp-modal-stars {
  direction: rtl;
  font-size: 32px !important;
  unicode-bidi: bidi-override;
  display: inline-block;
  margin: 4px 0 12px 0;
}
.mypage .mp-modal-stars input {
  display: none;
}
.mypage .mp-modal-stars label {
  color: #ccc !important;
  cursor: pointer;
}
.mypage .mp-modal-stars input:checked ~ label {
  color: #ffc107 !important;
}
.mypage textarea.mp-modal-review {
  width: 100%;
  height: 100px;
  resize: none;
  padding: 10px;
  font-size: 14px !important;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 4px;
}
.mypage .mp-modal-file-upload {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px !important;
  margin-bottom: 20px;
}
.mypage .mp-modal-file-upload input[type="file"] {
  display: none;
}
.mypage .mp-modal-file-upload label {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}

/* 작성한 후기 */
.mypage .reviews-written-modal-body .title-row {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 22px;
}
.mypage .reviews-written-modal-body hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 8px 0 8px 0;
}
.mypage .reviews-written-modal-body .rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  margin: 12px 0 4px;
}
.mypage .reviews-written-modal-body .stars {
  font-size: 20px !important;
  color: #ffc107;
}
.mypage .reviews-written-modal-body .stars .off {
  color: #ccc;
}
.mypage .reviews-written-modal-body .review-text {
  background: #f8f8f8;
  padding: 20px 16px;
  line-height: 1.5;
}
.mypage .reviews-written-modal-body .review-image {
  margin: 12px 0;
}
.mypage .reviews-written-modal-body .review-image img {
  width: 100px;
  height: auto;
  border: 1px solid #ddd;
}
.mypage .mp-modal-btn-long {
  padding: 8px 12px;
  width: 120px;
  border: 1px solid #2F3438;
  background-color: #fff;
  color: #2F3438;
}
.mypage .mp-modal-btn-long-active {
  padding: 8px 12px;
  width: 120px;
  background-color: #47517d;
  border-color: #47517d;
  color: white;
}
.mypage .mp-modal-btn-long-active:hover {
  background-color: #3859c7;
  border-color: #3859c7;
  color: #fff;
}

/* 아이콘 네비 */
.mypage .mp-icon-nav {
  width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  justify-items: center;
  gap: 12px;
  box-sizing: border-box;
}
.mypage .mp-icon-radio {
  display: none;
}
.mypage .mp-icon-item {
  flex: 0 0 calc(1300px / 8);
  display: flex;
  justify-content: center;
}
.mypage .mp-icon-label {
  padding: 10px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: filter 0.3s ease;
  border-radius: 10px;
  border: 1px solid transparent; 
}
.mypage .mp-icon-circle:hover,
.mypage .mp-icon-radio:checked + .mp-icon-circle {
  background-color: #8BC8F4;
}
.mypage .mp-icon-label.active .mp-icon-circle {
  border: 2px solid #47517d;
}
.mypage .mp-icon-circle:hover {
  background-color: #8BC8F4;
}
.mypage .mp-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mypage .mp-icon-circle img {
  margin: 3px 0 0 3px;
  object-fit: contain;
  display: block;
}
.mypage .mp-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.mypage .mp-icon-number {
  color: #47517d;
}

/* 계정 버튼 */
.mypage .user-info .account-btn {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 12px;
  cursor: pointer;
}
.mypage .user-info .account-btn:hover {
  background-color: #eee;
}

/* 검색바 높이 정리 */
.mypage .right-section { align-items: center; }
.mypage .mp-search-bar { display:flex; align-items:center; gap:8px; }
.mypage .mp-search-left { margin:0 !important; }
.mypage .select-box,
.mypage .mp-search-inputs input,
.mypage .mp-search-button {
  height: var(--mpFieldH) !important;
  box-sizing: border-box;
  vertical-align: middle;
}
.mypage .select-box { display:flex; align-items:center; }
.mypage .select-box select,
.mypage .mp-search-inputs input {
  height: 100% !important;
  display: inline-flex; align-items: center;
}
.mypage .mp-search-button {
  display: inline-flex; align-items: center; justify-content: center;
  line-height: var(--mpFieldH);
  padding: 0 16px;
}
.mypage .select-box::after {
  top: 50% !important;
  transform: translateY(-50%);
}


/* ✅ 이렇게 수정 */
.mypage .order-center-wrap{
  display:flex;
  align-items:center;
  flex:1 1 auto;
  min-width:0;
  gap:16px;
}

/* ✅ order-center는 이미지 + 상품정보만 (2컬럼) */
/* .mypage .order-center{
  display: grid !important;
  grid-template-columns: max-content 2.1fr !important;
  column-gap: 16px;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  width: auto; 
} */

.mypage .order-center{
  display:flex;
  align-items:center;
  gap:16px;
  flex:1 1 auto;
  min-width:0;
}

.mypage .order-center .img-wrap-table{
  grid-column: 1;
  width: 80px;
  height: 80px;
}
.mypage .order-center .product-info{
  grid-column: 2;
  min-width: 0;
}
.mypage .order-center .product-name,
.mypage .order-center .product-title,
.mypage .order-center .product-detail{
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.order-payinfo{
  flex: 0 0 auto;           /* 고정폭 강제보다 내용 기반 */
  margin-left: auto;        /* 중앙(상품영역) 끝까지 밀고 */
  min-width: 120px;
}
/* 기존 pay-row 스타일은 그대로 사용 가능 */
.mypage .order-payinfo .pay-row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px; 
  text-align: center;
  line-height: 1.35;
  padding: 2px 0;
  color:#606b85;
  white-space: nowrap;          /* ✅ 한 줄 유지 */
}
.mypage .order-payinfo .label{
  color:#777777;
  white-space:nowrap;
  font-size: 14px !important;
  letter-spacing: -0.01em;
}
.mypage .order-payinfo .value{
  color:#2b3148;
  font-weight:500;
  white-space:nowrap;
  font-size: 14px !important;
  letter-spacing: -0.01em;
}

/* 썸네일 */
.mypage .img-wrap-table{
  position: relative;
  width:80px; height:80px;
  flex: 0 0 80px;
  border: 1px solid #e6e9f0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.mypage .product-thumbnail{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
}

.mypage .order-center .img-wrap-table::after{
  content:"";
  position:absolute;
  right:-8px;
  top:4px; bottom:4px;
  width:1px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    #e6e9f0 15%,
    #e6e9f0 85%,
    rgba(0,0,0,0) 100%
  );
  pointer-events:none;
}


.mp-preview-cell {
  width: 160px;            /* 왼쪽 미리보기 고정 폭 */
  vertical-align: top;     /* 위쪽 정렬 */
  padding-right: 12px;
}

.mp-preview-box{
  width: 100%;
  min-height: 160px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fafafa;
  padding: 8px;
}
.mp-preview-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.mp-preview-img{
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #eee;
}
.mp-preview-placeholder {
  font-size: 13px;
  color: #999;
}
.img-wrap-table.preview-vertical{
  display:flex;
  flex-direction:column;
  gap:6px;
  width:80px;          /* 기존 레이아웃 유지 */
  max-height:260px;    /* 필요 시 조절 */
  overflow-y:auto;     /* 많으면 세로 스크롤 */
  /* padding-right:2px; */
}
.img-wrap-table.preview-vertical::-webkit-scrollbar{
  width:4px;
}
.img-wrap-table.preview-vertical::-webkit-scrollbar-thumb{
  background:#d5d5d5;
  border-radius:4px;
}
.preview-img{
  width:100%;
  /* height:80px; */
  object-fit:cover;
  border-radius:6px;
  border:1px solid #eee;
  background:#fff;
  cursor: zoom-in;
}
.hover-preview-float{
  position:fixed;
  z-index:9999;
  width:360px;
  height:360px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  padding:6px;
  pointer-events:none; /* 마우스 이벤트 방해 X */
}
.hover-preview-float img{
  width:100%;
  height:100%;
  object-fit:contain;  /* 확대시 잘림 없이 */
  border-radius:6px;
  background:#fafafa;
}
.mp-cancel-badge {
  display: inline-flex;       /* 글자만큼만 감싸기 */
  align-items: center;
  margin-top: 4px;
  padding: 1px 6px;          /* 좌우 패딩 줄이기 */
  font-size: 11px;          /* 살짝 작게 */
  font-weight: 600;
  color: #e53935;
  background-color: rgba(229, 57, 53, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.4);
  border-radius: 6px;       /* pill 말고 작은 라운드 */
  line-height: 1.2;
  white-space: nowrap;     /* 줄바꿈 방지 */
}

