container6 {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background-color: #f0f2f5;
	color: #333;
	margin: 0;
	padding: 0;
}

.container-detail {
	max-width: 900px;
	margin: 20px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.section-header {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* 헤더 */
.page-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
}
.page-header .title-path {
	font-weight: bold;
	color: #333;
}
.page-header .copy-link {
	color: #3498db;
}

/* 주문 정보 */
.order-info {
	font-size: 12px;
	color: #999;
	margin-bottom: 15px;
	line-height: 200%;
}

/* 상품 제목 */
.product-title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
}

/* 정보 카드 */
.info-cards {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}
.info-card {
	flex: 1;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	text-align: center;
}
.info-card-title {
	font-size: 14px;
	color: #666;
	margin-bottom: 5px;
}
.info-card-value {
	font-size: 18px;
	font-weight: bold;
}

/* 판매자 정보 */
.seller-card {
	display: flex;
	align-items: center;
	padding: 15px;
	border-radius: 8px;
	background-color: #f9f9f9;
}
.seller-logo {
	width: 40px;
	height: 40px;
	background-color: #8e44ad;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: bold;
}
.seller-info {
	margin-left: 15px;
	flex-grow: 1;
}
.seller-info .nickname {
	font-weight: bold;
	font-size: 16px;
}
.seller-info .points {
	font-size: 12px;
	color: #999;
}
.seller-buttons {
	display: flex;
	gap: 5px;
}
.seller-buttons button {
	border: 1px solid #ddd;
	background-color: #fff;
	padding: 8px 12px;
	border-radius: 5px;
	font-size: 12px;
	color: #666;
	cursor: pointer;
}

/* 상세 설명 */
.description-list {
	font-size: 1.4em;
	line-height:150%;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.description-list li {
	margin-bottom: 8px;
	font-size: 14px;
}
.view-all {
	display: block;
	margin-top: 15px;
	text-align: center;
	color: #3498db;
	cursor: pointer;
}

/* 내 거래정보 */
.transaction-info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact-info {
	display: flex;
	flex-direction: column;
}
.contact-info .name {
	font-weight: bold;
}
.contact-info .phone {
	font-size: 14px;
	color: #666;
}
.contact-info .edit-link {
	font-size: 12px;
	color: #3498db;
	margin-left: 5px;
}
.security-card {
	background-color: #e8f0fe;
	border: 1px solid #d0e0ff;
	color: #555;
	padding: 10px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	font-size: 12px;
	max-width: 250px;
}
.security-card .shield-icon {
	width: 20px;
	height: 20px;
	background-color: #3498db;
	border-radius: 50%;
	margin-right: 8px;
}

/* 최종 결제 금액 */
.final-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}
.total-price {
	display: flex;
	flex-direction: column;
}
.total-price .label {
	font-size: 14px;
	color: #666;
}
.total-price .amount {
	font-size: 24px;
	font-weight: bold;
	color: #e74c3c; /* 빨간색 */
	margin-top: 5px;
}
.total-price .amount input {
	font-size: 24px;
	font-weight: bold;
	color: #e74c3c; /* 빨간색 */
	margin-top: 5px;
}
.additional-price {
	font-size: 16px;
	color: #999;
}



/* 결제 섹션 */
.payment-section {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}
.payment-options {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}
.payment-option {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.2s;
}
.payment-option:hover {
	background-color: #f5f5f5;
}
.payment-option input[type="radio"] {
	margin-right: 10px;
}
.payment-button {
	width: 100%;
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #3498db;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s;
}
.payment-button:hover {
	background-color: #2980b9;
}