
/* AliExpress 스타일 테마 적용 */

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #191919;
}
p {
	margin: 12px;
}

h2 {
  font-size: 20px;
  color: #191919;
  padding-bottom: 10px;
}
h3 {
  font-size: 16px;
  color: #191919;
}
h1, h2, h3, h4 {
  color: #191919;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
/* 헤더 시작 */
.site-header {
  background-color: #ffffff;
  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 {
  color: #E02020;
}
/* 헤더 끝 */

.post-title {
	text-align: center;
}
.post-thumbnail {
  text-align: center; 
}
.post-thumbnail img {
  display: inline-block;
  max-width: 100%;
  width: 300px;
  height: auto;
}
/* 푸터 시작 */
.site-footer {
  background-color: #ffffff;
  color: #191919;
  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;
}
/* 푸터 끝 */

/* 상품 테이블 공통 스타일 */
table {
	table-layout:	fixed; 
	border-collapse: collapse; 
	border-spacing: 0;
}
img {
	height:auto;
	width:100%; 
	max-width:100%;
}
.divTable {
	display: table; 
	width:100%; 
	min-height:40px; 
	border:1px solid #BDBDBD;
}
.divTable ~ .divTable {
	border-top:0;
}
.divTable span + span {
	border-left:1px solid #BDBDBD;
}
.tableCell {
	display:table-cell; 
	height:100%; 
	padding:12px; 
	vertical-align:middle;
	color: #191919;
}

.tableCell.num {
	width: 10%; 
	text-align:center;
	vertical-align: middle;
	background-color: #FDFDFD;
}
.tableCell.title {
	width:90%; 
	text-align:center; 
	vertical-align: middle;
	background-color: #FDFDFD;
}
.thumnail {
	width:40%;
	text-align:center;
	vertical-align: middle;
}
.tableCell.txt {
	width:50%;
	vertical-align: middle;
}
.tableCell.txt p {
	padding-bottom:1px;
}
.tableCell.txt p a {
	text-decoration:none; 
	color: #191919;
}

/* 버튼 스타일 */
/*.btn, .anchor_btn, .a_btn {
  background-color: #FF4747;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover, .anchor_btn:hover, .a_btn:hover {
  background-color: #E02020;
}*/

.btn {
	width: 150px;
	height: 48px;
	cursor: pointer;
	margin-right: 8px;
	font-weight: 700;
	border-radius: 24px;
	text-align: center;
	font-size: 14px;
	margin-top: 5px;
	background-color: #191919;
	color: #ffffff;
}

/* 태그 리스트 */
.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 {
  background-color: #FFECEC;
  color: #FF4747;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 13px;
  margin-bottom: 6px;
  transition: background-color 0.3s;
  text-decoration: none;
}

.tag-item:hover {
  background-color: #FFDDDD;
}
/* 반응형 대비 */
@media (max-width: 768px) {
  .divTable {
    font-size: 13px;
  }

  .divTable .thumnail {
    width: 100px;
  }

  .divTable .thumnail img {
    width: 90px;
  }
}
