/* 오뚜기) 순후추 240g 상세 페이지 스타일 */

/* 전체 컨테이너 스타일 */
.tks-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 30px 20px !important;
  font-family: 'Noto Sans KR', sans-serif !important;
  color: #333 !important;
  line-height: 1.6 !important;
  box-sizing: border-box !important;
  background-color: #ffffff !important;
}

/* 헤더 섹션 스타일 */
.tks-header {
  text-align: center !important;
  margin-bottom: 40px !important;
  padding-bottom: 25px !important;
  border-bottom: 1px solid #eaeaea !important;
}

.tks-badge {
  display: inline-block !important;
  background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  margin-bottom: 15px !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1) !important;
}

.tks-title {
  font-size: 34px !important;
  font-weight: 700 !important;
  margin: 15px 0 10px !important;
  color: #2e7d32 !important;
  font-family: 'Noto Serif KR', serif !important;
  line-height: 1.3 !important;
}

.tks-brand {
  font-size: 17px !important;
  color: #757575 !important;
  font-weight: 500 !important;
}

/* 메인 섹션 스타일 */
.tks-main-section {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
  margin-bottom: 60px !important;
  align-items: stretch !important;
}

.tks-product-image {
  flex: 1 !important;
  min-width: 300px !important;
  border-radius: 15px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.tks-product-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

.tks-product-image:hover img {
  transform: scale(1.05) !important;
}

.tks-product-info {
  flex: 1 !important;
  min-width: 300px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.tks-info-table {
  background-color: #f8f9fa !important;
  border-radius: 15px !important;
  padding: 25px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.tks-info-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 12px 0 !important;
  border-bottom: 1px dashed #e0e0e0 !important;
}

.tks-info-row:last-child {
  border-bottom: none !important;
}

.tks-info-label {
  font-weight: 500 !important;
  color: #555 !important;
  flex: 1 !important;
}

.tks-info-value {
  color: #333 !important;
  text-align: right !important;
  flex: 2 !important;
  font-weight: 500 !important;
}

.tks-price {
  color: #e53935 !important;
  font-weight: 700 !important;
  font-size: 20px !important;
}

.tks-highlight-box {
  background: linear-gradient(135deg, #f0f9ef 0%, #e8f5e9 100%) !important;
  border-radius: 15px !important;
  padding: 20px !important;
  display: flex !important;
  align-items: center !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.tks-highlight-icon {
  font-size: 28px !important;
  margin-right: 15px !important;
  flex-shrink: 0 !important;
}

.tks-highlight-text {
  font-size: 16px !important;
  color: #2e7d32 !important;
  line-height: 1.7 !important;
  font-weight: 500 !important;
}

/* 소개 섹션 스타일 */
.tks-intro-section {
  margin-bottom: 60px !important;
}

.tks-story-heading {
  font-size: 24px !important;
  font-weight: 700 !important;
  margin: 30px 0 20px !important;
  color: #2e7d32 !important;
  border-left: 5px solid #43a047 !important;
  padding-left: 15px !important;
  font-family: 'Noto Serif KR', serif !important;
}

.tks-story-text {
  font-size: 18px !important;
  line-height: 1.8 !important;
  margin-bottom: 30px !important;
  color: #555 !important;
}

.tks-product-image-large {
  border-radius: 15px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  margin: 30px 0 !important;
}

.tks-product-image-large img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* 특징 섹션 스타일 */
.tks-features-section {
  margin-bottom: 60px !important;
}

.tks-features-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 25px !important;
  margin-top: 30px !important;
}

.tks-feature-item {
  background-color: #fff !important;
  border-radius: 15px !important;
  padding: 25px !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  border: 1px solid #e8f5e9 !important;
  display: flex !important;
  align-items: flex-start !important;
}

.tks-feature-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  border-color: #66bb6a !important;
}

.tks-feature-icon {
  font-size: 28px !important;
  margin-right: 15px !important;
  flex-shrink: 0 !important;
}

.tks-feature-content {
  flex: 1 !important;
}

.tks-feature-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  color: #2e7d32 !important;
}

.tks-feature-desc {
  font-size: 15px !important;
  color: #666 !important;
  line-height: 1.6 !important;
}

/* 활용법 섹션 스타일 */
.tks-usage-section {
  margin-bottom: 60px !important;
}

.tks-usage-cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 25px !important;
  margin-top: 30px !important;
}

.tks-usage-card {
  background-color: #fff !important;
  border-radius: 15px !important;
  padding: 25px !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.3s ease !important;
  border: 1px solid #e8f5e9 !important;
  position: relative !important;
}

.tks-usage-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  border-color: #66bb6a !important;
}

.tks-usage-number {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #43a047 !important;
  margin-bottom: 15px !important;
  opacity: 0.7 !important;
}

.tks-usage-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  color: #333 !important;
}

.tks-usage-desc {
  font-size: 15px !important;
  color: #666 !important;
  line-height: 1.6 !important;
}

/* 상세 이미지 섹션 스타일 */
.tks-detail-image-section {
  margin-bottom: 60px !important;
}

.tks-detail-image {
  border-radius: 15px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  margin-top: 30px !important;
}

.tks-detail-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* 보관 방법 섹션 스타일 */
.tks-storage-section {
  margin-bottom: 60px !important;
}

.tks-storage-box {
  background-color: #fff8e1 !important;
  border-radius: 15px !important;
  padding: 25px !important;
  display: flex !important;
  align-items: center !important;
  margin-top: 30px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.tks-storage-icon {
  font-size: 28px !important;
  margin-right: 20px !important;
  flex-shrink: 0 !important;
}

.tks-storage-text {
  font-size: 17px !important;
  color: #5d4037 !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
}

.tks-storage-tips {
  margin-top: 25px !important;
  padding: 0 10px !important;
}

.tks-tip-item {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 12px !important;
}

.tks-tip-bullet {
  color: #43a047 !important;
  font-size: 20px !important;
  margin-right: 10px !important;
  line-height: 1.4 !important;
}

.tks-tip-text {
  font-size: 16px !important;
  color: #666 !important;
  line-height: 1.6 !important;
}

/* 푸터 섹션 스타일 */
.tks-footer {
  margin-top: 60px !important;
  padding-top: 30px !important;
  border-top: 1px solid #eaeaea !important;
}

.tks-company-info {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 20px !important;
}

.tks-company-item {
  font-size: 14px !important;
  color: #757575 !important;
}

/* 반응형 스타일 */
@media screen and (max-width: 768px) {
  .tks-title {
    font-size: 28px !important;
  }
  
  .tks-main-section {
    flex-direction: column !important;
  }
  
  .tks-story-heading {
    font-size: 22px !important;
  }
  
  .tks-story-text {
    font-size: 16px !important;
  }
  
  .tks-features-grid {
    grid-template-columns: 1fr !important;
  }
  
  .tks-usage-cards {
    grid-template-columns: 1fr !important;
  }
  
  .tks-company-info {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
}