/* Z9997-C4264-W1044 상세 페이지 스타일 */


/* 기본 폰트 및 색상 설정 */
.tks-container {
    font-family: 'Noto Sans KR', sans-serif !important;
    color: #333 !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    background-color: #fff !important;
}

/* 섹션 공통 스타일 */
.tks-section {
    padding: 20px 15px !important;
    margin-bottom: 30px !important;
    border-radius: 10px !important;
    background-color: #fff !important;
}

/* 상품 메인 정보 섹션 */
.tks-product-main {
    text-align: center !important;
    border-bottom: 2px solid #f5f5f5 !important;
    padding-bottom: 40px !important;
    background-color: #f9f6f2 !important; /* 커피 컨셉에 맞는 연한 베이지 배경 */
}

.tks-product-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: #6d4c41 !important; /* 커피색 계열 */
    line-height: 1.3 !important;
}

.tks-product-subtitle {
    font-size: 18px !important;
    color: #8d6e63 !important;
    margin-bottom: 30px !important;
}

.tks-product-image {
    max-width: 90% !important;
    height: auto !important;
    margin: 0 auto 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* 상품 세부 정보 섹션 */
.tks-product-details {
    background-color: #fff !important;
    border: 1px solid #eee !important;
}

.tks-info-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #ddd !important;
    padding-bottom: 10px !important;
    margin-bottom: 20px !important;
    color: #6d4c41 !important;
    position: relative !important;
}

.tks-info-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 50px !important;
    height: 2px !important;
    background-color: #a1887f !important; /* 커피색 계열 */
}

.tks-info-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 30px !important;
}

.tks-info-table th, 
.tks-info-table td {
    padding: 12px 15px !important;
    border-bottom: 1px solid #eee !important;
    text-align: left !important;
}

.tks-info-table th {
    width: 30% !important;
    font-weight: 500 !important;
    color: #666 !important;
    background-color: #f7f7f7 !important;
}

.tks-info-table td {
    color: #333 !important;
}

/* 상품 특징 섹션 */
.tks-product-features {
    background-color: #f9f6f2 !important; /* 커피 컨셉에 맞는 연한 베이지 배경 */
}

.tks-feature-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    background-color: #fff !important;
    padding: 15px !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.tks-feature-icon {
    font-size: 24px !important;
    margin-right: 15px !important;
    color: #a1887f !important; /* 커피색 계열 */
}

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

/* 보관 방법 섹션 */
.tks-storage-method {
    background-color: #f5f5f5 !important;
}

.tks-storage-content {
    display: flex !important;
    align-items: center !important;
    background-color: #fff !important;
    padding: 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.tks-storage-icon {
    font-size: 40px !important;
    margin-right: 20px !important;
    color: #a1887f !important; /* 커피색 계열 */
}

.tks-storage-text {
    flex: 1 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

/* 스토리 섹션 */
.tks-story-section {
    padding: 30px 15px !important;
}

.tks-story-heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    color: #6d4c41 !important;
    position: relative !important;
}

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

/* 푸터 섹션 */
.tks-footer {
    border-top: 1px solid #eee !important;
    padding: 20px 15px !important;
    text-align: center !important;
    font-size: 14px !important;
    color: #888 !important;
    margin-top: 50px !important;
}

.tks-company-info {
    margin-bottom: 15px !important;
}

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

.tks-contact-item {
    display: flex !important;
    align-items: center !important;
}

.tks-contact-icon {
    margin-right: 5px !important;
}

/* 반응형 스타일 */
@media (min-width: 768px) {
    .tks-container {
        max-width: 900px !important;
    }
    
    .tks-section {
        padding: 30px !important;
    }
    
    .tks-product-title {
        font-size: 32px !important;
    }
    
    .tks-product-image {
        max-width: 70% !important;
    }
    
    .tks-feature-items {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .tks-feature-item {
        margin-bottom: 0 !important;
    }
}

/* 카드 디자인 요소 */
.tks-card {
    background-color: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    border-left: 4px solid #a1887f !important; /* 커피색 계열 */
}

.tks-card-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: #6d4c41 !important;
}

.tks-card-content {
    color: #666 !important;
}

/* 강조 요소 */
.tks-highlight {
    background-color: #efebe9 !important; /* 연한 커피색 배경 */
    color: #5d4037 !important;
    padding: 10px 15px !important;
    border-radius: 5px !important;
    margin: 20px 0 !important;
    border-left: 4px solid #a1887f !important; /* 커피색 계열 */
}

.tks-highlight-text {
    font-weight: 500 !important;
}

/* 강조 텍스트 */
.tks-emphasis {
    font-weight: 700 !important;
    color: #a1887f !important; /* 커피색 계열 */
}

/* 점선 구분선 */
.tks-divider {
    border: none !important;
    border-top: 2px dashed #d7ccc8 !important; /* 연한 커피색 점선 */
    margin: 30px 0 !important;
}

/* 커피 테마 색상 요소 */
.tks-coffee-bg {
    background-color: #f9f6f2 !important;
}

.tks-coffee-text {
    color: #a1887f !important;
}

/* 체크리스트 스타일 */
.tks-checklist {
    list-style: none !important;
    margin-top: 10px !important;
}

.tks-checklist li {
    margin-bottom: 5px !important;
    position: relative !important;
    padding-left: 25px !important;
}

.tks-checklist li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: #a1887f !important;
    font-weight: bold !important;
}

/* 이용법 스타일 */
.tks-usage-steps {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    margin: 20px 0 !important;
}

.tks-step {
    flex: 1 !important;
    min-width: 200px !important;
    margin: 10px !important;
    text-align: center !important;
    background-color: #fff !important;
    padding: 15px !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.tks-step-number {
    background-color: #a1887f !important;
    color: #fff !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto 10px !important;
    font-weight: bold !important;
}

.tks-step-title {
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #6d4c41 !important;
}

.tks-step-desc {
    color: #666 !important;
    font-size: 14px !important;
}

/* 커피 맛 설명 스타일 */
.tks-flavor-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: 15px !important;
    margin: 20px 0 !important;
}

.tks-flavor-item {
    flex: 1 !important;
    min-width: 150px !important;
    text-align: center !important;
    background-color: #fff !important;
    padding: 15px !important;
    border-radius: 8px !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.tks-flavor-icon {
    font-size: 28px !important;
    margin-bottom: 10px !important;
    color: #a1887f !important;
}

.tks-flavor-title {
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    color: #6d4c41 !important;
}

.tks-flavor-desc {
    color: #666 !important;
    font-size: 14px !important;
}

/* 비교 테이블 스타일 */
.tks-compare-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05) !important;
}

.tks-compare-table th, 
.tks-compare-table td {
    padding: 12px 15px !important;
    text-align: center !important;
    border: 1px solid #d7ccc8 !important;
}

.tks-compare-table th {
    background-color: #efebe9 !important;
    color: #5d4037 !important;
    font-weight: 600 !important;
}

.tks-compare-table td {
    background-color: #fff !important;
}

.tks-compare-highlight {
    background-color: #f9f6f2 !important;
    font-weight: 500 !important;
    color: #6d4c41 !important;
}
