#products {
  width: 100vw;
  padding: 70px 0 150px 0;
}

.prod_description > h1 {
  color: var(--main_color);
  margin-bottom: 12px;
}

.prod_description > *:last-child {
  margin-top: 10px;
}

.contact-info > .material-icons {
  margin-left: 8px;
  position: relative;
  top: 3px;
}

/* .prod_items_wrap_grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
  grid-row-gap: 24px;
} */

.prod_items_wrap_grid {
  /*	background-color: aquamarine;*/
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  grid-row-gap: 24px;
}

@media screen and (max-width: 1920px) {
  .prod_items_wrap_grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media screen and (max-width: 1440px) {
  .prod_items_wrap_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1080px) {
  .prod_items_wrap_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 780px) {
  .prod_items_wrap_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prod_item {
  /*	border: 1px solid red;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.prod_item:hover {
  transition: opacity 0.2s;
  opacity: 0.75;
}

.prod_item > img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.prod_item > h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 26px 0 12px 0;
  color: var(--gray_70);
}

.prod_item > p {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray_30);
  text-align: center;
  white-space: pre-wrap;
  line-height: 16px;
}

/* .prod_item.span_3 {
  grid-column: span 3;
}

.prod_item.span_4 {
  grid-column: span 4;
}

.prod_item.span_6 {
  grid-column: span 6;
} */

.prod_detail_wrap {
  margin-top: 100px;
  width: 12rem;
}

.prod_detail_con {
  margin-top: 40px;
  width: inherit;
}

.tab_bar {
  width: 100%;
  display: flex;
  background-color: var(--gray_10);
  border-radius: 4px;
  overflow: hidden;
}

.tab_item {
  flex: 1;
}

.tab_item label {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray_60);
  text-align: center;
  padding: 12px 0;
  cursor: pointer;
  border-radius: 4px;
}

.tab_item label:hover {
  background-color: var(--gray_20);
}

.tab_item input:checked + label {
  background-color: var(--sub_color);
  color: white;
}

.tab_contents_display {
  width: inherit;
  border: 1px solid var(--gray_20);
  border-radius: 4px;
  overflow: hidden;
}

#tab_contents_list {
  width: inherit;
  display: flex;
  overflow: hidden;
}

#tab_contents_list > li > * {
  width: 12rem;
}

.grid_column_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
  padding: 12px;
}

.feature_item {
  width: 100%;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--gray_20);
  border-radius: 3px;
}

.effect_item {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

table,
th,
td {
  border: 1px solid var(--gray_20);
}

.effect_item table {
  width: 100%;
  border-collapse: collapse;
}

.effect_item th,
.effect_item td {
  padding: 12px;
}

.effect_item tr:first-child th {
  background-color: var(--gray_10);
}

.effect_item tr:last-child td {
  padding-left: 20px;
}

.prod_table {
  font-size: 16px;
  margin: 12px;
  width: calc(12rem - 24px) !important;
}

.prod_table th,
.prod_table td {
  padding: 6px;
  vertical-align: middle;
  white-space: pre-line;
  word-break: keep-all;
}

.prod_table th {
  text-align: center;
  padding: 10px;
  background-color: var(--gray_10);
  font-weight: 700;
}

.prod_table td {
  padding: 10px;
}

.prod_table .center {
  text-align: center;
}

/* 검증서 이미지 컨테이너 */
.verification-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

/* 검증서 이미지 크기 조정 */
.verification-img {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  height: auto;
  object-fit: contain;
}
