/* 업소 댓글 스타일 */
.shop-comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.shop-comments-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
}

.shop-comments-section .comment-count {
    color: #667eea;
    font-weight: 600;
}

.shop-comment-form {
    margin-bottom: 30px;
}

.shop-comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 10px;
}

.shop-comment-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-comment {
    padding: 10px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-comment:hover {
    background: #5568d3;
}

.login-required {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

.login-required a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.login-required a:hover {
    text-decoration: underline;
}

.shop-comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shop-comments-list .loading {
    text-align: center;
    padding: 20px;
    color: #999;
}

.shop-comments-list .no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.comment-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-header .nickname {
    font-weight: 600;
    color: #333;
}

.comment-header .date {
    color: #999;
    font-size: 13px;
}

.comment-header .btn-delete-comment {
    margin-left: auto;
    padding: 4px 10px;
    background: #ff6b6b;
    color: white;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}

.comment-header .btn-delete-comment:hover {
    background: #ff5252;
}

.comment-content {
    color: #555;
    line-height: 1.6;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .shop-comments-section h3 {
        font-size: 18px;
    }
    
    .shop-comment-form textarea {
        font-size: 13px;
    }
    
    .btn-comment {
        width: 100%;
    }
    
    .comment-item {
        padding: 15px;
    }
}