body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #333333;
}

h2{
  font-size: 20px;
}
h3{
  font-size: 16px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
/* 헤더 시작 */
.site-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.logo img {
  height: 50px;
}
.site-title {
  font-size: 1.8rem;
  color: #2C3E50;
  margin: 0;
  font-weight: 700;
}
/* 헤더 끝 */

.post-title {
	text-align: center;
}
.post-thumbnail {
  text-align: center; 
}
.post-thumbnail img{
  display: inline-block;
  max-width: 100%;
  height: auto;
}
/* 푸터 시작 */
.site-footer {
  background-color: #f8f9fa;
  color: #555;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-container .logo img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-container p {
  margin: 0;
  font-size: 0.9rem;
}
/* 푸터 끝 */

/* 상품 테이블 공통 스타일 */
.choocheonTable {
  display: table;
  width: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
  table-layout: fixed;  
}

/* 각 행 스타일 */
.choocheonTable ~ .choocheonTable {
  border-top: none;
}

.choocheonTable span {
  display: table-cell;
  padding: 12px;
  vertical-align: middle;
  border-left: 1px solid #ccc;
}

.choocheonTable span:first-child {
  border-left: none;
}
.choocheonTable span.tableSpan.spanTitle{
	text-align: center;
	  background-color: #f8f8f8;
	  font-weight: bold;
}
/* 헤더 스타일 */
.choocheonTable.divRowHeader {
  background-color: #f8f8f8;
  font-weight: bold;
}

.choocheonTable.divRowHeader span {
  text-align: center;
  background-color: #f8f8f8;
  font-weight: bold;
}


/* 넘버링 셀 */
.choocheonTable .spanNum {
  width: 20px;
  text-align: center;
  background-color: #f8f8f8;
}

/* 썸네일 셀 */
.choocheonTable .thumbnailSpan {
  width: 20%;
  text-align: center;
}

.choocheonTable .thumbnailSpan img {
  width: 100%;
  height: auto;
}

/* 텍스트 셀 */
.choocheonTable .spanTxt {
  padding-left: 10px;
  font-size: 14px;
  
}
.choocheonTable .spanTxt h4 b a{
  text-decoration: none;
  color: #000;
}

/* 텍스트 내부 디테일 */
.discountText {
  font-size: 12px;
  color: #ae0000;
}
.discountPercent {
  font-size: 12px;
  color: #0E17DE;
}
.basePrice {
  font-size: 13px;
  color: #888888;
  text-decoration: line-through;
}
.labelPrice {
  font-size: 16px;
  font-weight: bold;
  color: #ae0000;
}

.deliveryInfo {
    font-size: 14px;
    line-height: 20px;
    color: #0073e9;
}

.infoMsg {
	display: block;
	font-size: 14px;
	background: #f9f9f9;
	color: #333;
	padding: 10px;
	margin-bottom: 12px;
	border-left: 4px solid #ccc;
	word-break: break-word;
	max-width: 100%;
}

/* 버튼 */
.a_btn {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 12px;
  background-color: #0073e9;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
}

/* 태그 리스트 */
.tags {
    margin-top: 30px;
}

.tags p {
    font-weight: bold;
    margin-bottom: 10px;
}

.tags ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.tags li {
    margin-right: 10px;
}

.tag-item {
    display: inline-block;
    padding: 4px 8px;
    background-color: #eee;
    border-radius: 3px;
    font-size: 12px;
    color: #333;
	text-decoration:none;
}
/* 반응형 대비 */
@media (max-width: 768px) {
  .choocheonTable {
    font-size: 13px;
  }

  .choocheonTable .thumbnailSpan {
    width: 100px;
  }

  .choocheonTable .thumbnailSpan img {
    width: 90px;
  }
}
@media (max-width: 600px) {
  .infoMsg {
    font-size: 13px;
    padding: 8px;
    line-height: 1.4;
  }
}