#main .header .desc {
	font-family: 'Spoqa Han Sans Neo', 'sans-serif';
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	color: #767995;
	margin-top: 20px;
}

#main .list {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	margin-top: 20px;
	display: none;
}

/* 카드 스타일 */
#main .list .order-card {
	margin-bottom: 20px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	background: #fff;
	overflow: hidden;
	font-family: 'Spoqa Han Sans Neo', 'sans-serif';
}

/* 카드 헤더: 날짜 + 상세보기 링크 */
#main .list .order-card .card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #f0f0f0;
	background: #fafafa;
}

#main .list .order-card .card-header .order-date {
	font-size: 18px;
	font-weight: 600;
	color: #111;
}

#main .list .order-card .card-header .detail-link {
	font-size: 14px;
	color: #1a73e8;
	text-decoration: none;
}

#main .list .order-card .card-header .detail-link:hover {
	text-decoration: underline;
}

/* 카드 바디: 2컬럼 레이아웃 (상품정보 + 액션버튼) */
#main .list .order-card .card-body {
	display: flex;
	gap: 20px;
	padding: 20px;
}

#main .list .order-card .card-body .product-area {
	flex: 1;
	min-width: 0;
}

/* 우측 액션 버튼 영역 */
#main .list .order-card .card-body .action-area {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 120px;
	justify-content: center;
}

#main .list .order-card .action-area .action-btn {
	display: block;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	text-align: center;
	font-size: 13px;
	color: #333;
	text-decoration: none;
	background: #fff;
	white-space: nowrap;
	transition: background 0.15s;
}

#main .list .order-card .action-area .action-btn:hover {
	background: #f5f5f5;
	border-color: #ccc;
}

/* 취소 요청 버튼 스타일 */
#main .list .order-card .action-area .action-btn.btn-cancel-request {
	color: #d32f2f;
	border-color: #ffcdd2;
	background: #fff;
	cursor: pointer;
}

#main .list .order-card .action-area .action-btn.btn-cancel-request:hover {
	background: #ffebee;
	border-color: #ef9a9a;
}

/* 배송상태 행 */
#main .list .order-card .status-row {
	margin-bottom: 16px;
}

/* 배송상태 뱃지 */
#main .list .order-card .del-status {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
}

#main .list .order-card .del-status.status-ready {
	background: #f5f5f5;
	color: #666;
}

#main .list .order-card .del-status.status-shipping {
	background: #e3f2fd;
	color: #1976d2;
}

#main .list .order-card .del-status.status-complete {
	background: #e8f5e9;
	color: #388e3c;
}

#main .list .order-card .del-status.status-cancelled {
	background: #ffebee;
	color: #d32f2f;
}

/* 상품 행: 썸네일 + 정보 */
#main .list .order-card .product-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

/* 썸네일 */
#main .list .order-card .product-thumb {
	flex-shrink: 0;
	display: block;
}

#main .list .order-card .product-thumb img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
}

/* 상품 정보 */
#main .list .order-card .product-info {
	flex: 1;
	min-width: 0;
}

#main .list .order-card .product-info .title {
	font-size: 15px;
	font-weight: 500;
	color: #333;
	line-height: 1.4;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

#main .list .order-card .product-info .price-count {
	font-size: 14px;
	color: #666;
}

/* 레코드 없음 */
#main .list .norecord {
	margin-top: 20px;
	padding: 40px 20px;
	font-family: 'Spoqa Han Sans Neo', 'sans-serif';
	font-size: 14px;
	color: #999;
	text-align: center;
	background: #fafafa;
	border-radius: 12px;
}

/* 필터 (새로고침 버튼) */
#main .filter {
	margin-top: 40px;
	text-align: center;
}

#main .filter .button-sub {
	padding: 8px 16px;
	font-size: 14px;
	border-radius: 6px;
}

/* 모바일 반응형 */
@media (max-width: 992px) {
	#main .list {
		padding: 0 14px;
		margin-top: 30px;
	}

	#main .list .order-card .card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 14px 16px;
	}

	#main .list .order-card .card-header .order-date {
		font-size: 16px;
	}

	#main .list .order-card .card-body {
		flex-direction: column;
		padding: 16px;
	}

	#main .list .order-card .card-body .action-area {
		flex-direction: row;
		flex-wrap: wrap;
		min-width: auto;
		margin-top: 16px;
		padding-top: 16px;
		border-top: 1px solid #f0f0f0;
	}

	#main .list .order-card .action-area .action-btn {
		flex: 1;
		min-width: 90px;
	}

	#main .list .order-card .product-thumb img {
		width: 80px;
		height: 80px;
	}

	#main .list .order-card .product-info .title {
		font-size: 14px;
	}

	#main .filter {
		margin-top: 30px;
	}
}

@media (max-width: 467px) {
	#main .list .order-card .product-row {
		gap: 12px;
	}

	#main .list .order-card .product-thumb img {
		width: 70px;
		height: 70px;
	}

	#main .list .order-card .action-area .action-btn {
		padding: 8px 10px;
		font-size: 12px;
	}
}
